Skip to content

Commit

Permalink
fix bug in current tests
Browse files Browse the repository at this point in the history
  • Loading branch information
natevw committed Feb 17, 2022
1 parent 5791f91 commit 6a9a1a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ describe('.unsign(val, secret)', function(){
it('should unsign the cookie', function(){
var val = cookie.sign('hello', 'tobiiscool');
cookie.unsign(val, 'tobiiscool').should.equal('hello');
cookie.unsign(val, 'luna').should.be.false;
cookie.unsign(val, 'luna').should.be.false();
})
})

0 comments on commit 6a9a1a0

Please sign in to comment.