small fix

This commit is contained in:
Ricardo Guilherme Schmidt 2018-05-15 15:01:41 -03:00 committed by Barry Gitarts
parent 6fa3e8a49f
commit 990fb7aace
1 changed files with 1 additions and 1 deletions

View File

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