Skip to content

Commit

Permalink
Fixed testcases for PhantomJS syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Jan 4, 2020
1 parent f996ec0 commit 4478896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test-account.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ describe("Create2 Address Generation", function() {

tests.forEach(function(test) {
it("correctly computes the Create2 address - " + test.name, function() {
const address = ethers.utils.getCreate2Address(test);
var address = ethers.utils.getCreate2Address(test);
assert.equal(address, test.expected, "correctly computes Create2 address");
});
});
Expand Down

0 comments on commit 4478896

Please sign in to comment.