Skip to content

Commit

Permalink
Change test to passing
Browse files Browse the repository at this point in the history
  • Loading branch information
sahat committed Feb 26, 2014
1 parent 5d21516 commit 00fef78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/app_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ describe('GET /', function() {
});

describe('GET /reset', function() {
it('should load password reset page', function(done) {
it('should return 404', function(done) {
request(app)
.get('/reset')
.expect(200, done);
.expect(404, done);
// this will fail
});
});

0 comments on commit 00fef78

Please sign in to comment.