Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm committed Mar 2, 2015
1 parent 57d115e commit 9f98c9d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions test/test.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe 'App', ->
.set('Authorization', 'Basic dGVzdG5hbWVAdGVzdC5jb206Ym9ndXM=')
.end (err, a, b) ->
a.statusCode.should.equal 200
a.body.status.length.should.equal 0
a.body.status.should.equal false
upd = a.body.updated
done(err)

Expand All @@ -51,7 +51,7 @@ describe 'App', ->
.set('Authorization', 'Basic dGVzdG5hbWVAdGVzdC5jb206Ym9ndXM=')
.end (err, a, b) ->
a.statusCode.should.equal 200
a.body.status.length.should.equal 0
a.body.status.should.equal false
a.body.updated.should.equal upd
done(err)

Expand Down
6 changes: 3 additions & 3 deletions test/test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9f98c9d

Please sign in to comment.