Skip to content

Commit

Permalink
Tiny fixes to the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
staltz authored Feb 11, 2020
1 parent d924766 commit 556e1a1
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions test/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,10 @@ describe('generateAny', function () {
hex.should.be.equal(hex2);
});

it('should return not same hex when same string provided', function () {
it('should return not same hex when different strings are provided', function () {
var hex = generate("test");
var hex2 = generate("test2");
hex.should.not.be.equal(hex2);
});

it('should return same value as generate', function () {
var hex = generate("test");
var hex2 = generate("test");
hex.should.be.equal(hex2);
});

});
});

0 comments on commit 556e1a1

Please sign in to comment.