|
@@ -1,10 +1,10 @@
|
|
|
contract('Bounty', function(accounts) {
|
|
|
- it("can call checkInvarient for InsecureTargetMock", function(done){
|
|
|
+ it("can call checkInvariant for InsecureTargetMock", function(done){
|
|
|
var bounty = Bounty.deployed();
|
|
|
var target = SecureTargetMock.deployed();
|
|
|
bounty.createTarget(target.address).
|
|
|
then(function() {
|
|
|
- return bounty.checkInvarient.call()
|
|
|
+ return bounty.checkInvariant.call()
|
|
|
}).
|
|
|
then(function(result) {
|
|
|
assert.isTrue(result);
|
|
@@ -12,12 +12,12 @@ contract('Bounty', function(accounts) {
|
|
|
then(done);
|
|
|
})
|
|
|
|
|
|
- it("can call checkInvarient for InsecureTargetMock", function(done){
|
|
|
+ it("can call checkInvariant for InsecureTargetMock", function(done){
|
|
|
var bounty = Bounty.deployed();
|
|
|
var target = InsecureTargetMock.deployed();
|
|
|
bounty.createTarget(target.address).
|
|
|
then(function() {
|
|
|
- return bounty.checkInvarient.call()
|
|
|
+ return bounty.checkInvariant.call()
|
|
|
}).
|
|
|
then(function(result) {
|
|
|
assert.isFalse(result);
|