From 990fb7aace0f5150dfbed2d6e83b4aa42ab2660d Mon Sep 17 00:00:00 2001 From: Ricardo Guilherme Schmidt <3esmit@gmail.com> Date: Tue, 15 May 2018 15:01:41 -0300 Subject: [PATCH] small fix --- test/enssubdomainregistry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/enssubdomainregistry.js b/test/enssubdomainregistry.js index 30c5e2d..5857e50 100644 --- a/test/enssubdomainregistry.js +++ b/test/enssubdomainregistry.js @@ -68,7 +68,7 @@ contract('ENSSubdomainRegistry', function () { assert.equal(result, utils.zeroAddress); let accountBalance = await ENSSubdomainRegistry.methods.getAccountBalance(usernameHash).call(); assert(accountBalance, 0, "Registry subdomain account balance wrong"); - let result = await ENSSubdomainRegistry.methods.getBackupOwner(usernameHash).call(); + result = await ENSSubdomainRegistry.methods.getBackupOwner(usernameHash).call(); assert(result, registrant, "Backup owner not set"); });