Skip to content

Commit

Permalink
fix spacing issue that fails a correct code (CryptozombiesHQ#543)
Browse files Browse the repository at this point in the history
  • Loading branch information
hurricanenara authored Sep 14, 2021
1 parent 85052ac commit bd08d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/11/05.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ material:
const contractInstance = await CryptoZombies.new();
const result = await contractInstance.createRandomZombie(zombieNames[0], {from: alice});
assert.equal(result.receipt.status, true);
assert.equal(result.logs[0].args.name,zombieNames[0]);
assert.equal(result.logs[0].args.name, zombieNames[0]);
})
})
---
Expand Down

0 comments on commit bd08d37

Please sign in to comment.