Skip to content

Commit

Permalink
Fix inconsistent return
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Jan 15, 2021
1 parent 30b7210 commit 848962e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -100,7 +100,7 @@ describe('POST /users', function() {
.expect(200)
.end(function(err, res) {
if (err) return done(err);
done();
return done();
});
});
});
Expand Down

0 comments on commit 848962e

Please sign in to comment.