Skip to content

Commit

Permalink
Merge pull request #1538 from suguru03/fix-memoize-test
Browse files Browse the repository at this point in the history
Fix a memoize test case
  • Loading branch information
aearly committed Jun 3, 2018
2 parents 12e0e75 + 1bc2b6e commit 3e6aa9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/memoize.js
Expand Up @@ -125,9 +125,9 @@ describe("memoize", function() {
expect(err).to.equal(testerr);
testerr = null;

memoized(5, 6, function (err, result) {
memoized(1, 3, function (err, result) {
expect(err).to.equal(null);
expect(result).to.equal(11);
expect(result).to.equal(4);
done();
});
});
Expand Down

0 comments on commit 3e6aa9d

Please sign in to comment.