Skip to content

Commit

Permalink
Merge pull request #698 from jackton1/patch-1
Browse files Browse the repository at this point in the history
Fix inconsistent return
  • Loading branch information
niftylettuce committed Jan 15, 2021
2 parents 30b7210 + 848962e commit 9b0751c
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 9b0751c

Please sign in to comment.