From 38545eb6484d44c652d92cdb0dd2edac96d035cf Mon Sep 17 00:00:00 2001 From: Angello Pozo Date: Thu, 1 Dec 2016 20:20:44 -0800 Subject: [PATCH] fix: spelling in a test --- test/Bounty.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Bounty.js b/test/Bounty.js index 60eba99a0..582b2fe8c 100644 --- a/test/Bounty.js +++ b/test/Bounty.js @@ -79,9 +79,9 @@ contract('Bounty', function(accounts) { it("checkInvariant returns false", async function(){ let bounty = await InsecureTargetBounty.new(); let target = await bounty.createTarget(); - let invarriantCall = await bounty.checkInvariant.call(); + let invariantCall = await bounty.checkInvariant.call(); - assert.isFalse(invarriantCall); + assert.isFalse(invariantCall); }) it("claims reward", async function(done){