Skip to content

Commit bdde5b0

Browse files
committed
adds missing semicolons
1 parent c3a4571 commit bdde5b0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spec/api/students.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ frisby.create('Create contact with post')
2323
{json: true})
2424
.expectStatus(200)
2525
.afterJSON(function(json){
26-
getRecord(json.id)
26+
getRecord(json.id);
2727
}
2828
)
2929
.toss();
@@ -66,7 +66,7 @@ function testCourse(id){
6666
.afterJSON(function(json){
6767
deleteRecord(json.id);
6868
})
69-
.toss()
69+
.toss();
7070
}
7171

7272
function deleteRecord(id){

0 commit comments

Comments
 (0)