Fixed testcases for PhantomJS syntax.

This commit is contained in:
Richard Moore 2020-01-03 19:43:27 -05:00
parent f996ec0c32
commit 4478896ca5
No known key found for this signature in database
GPG Key ID: 665176BE8E9DC651

@ -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");
});
});