From 04186e2cf6009c6fecc80e9f934ab1c7db29b1c7 Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Tue, 22 Jan 2019 17:42:48 -0300 Subject: [PATCH] fix missing helper --- test/ownership/Ownable.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ownership/Ownable.test.js b/test/ownership/Ownable.test.js index bd3c9d8c2..a6675d3da 100644 --- a/test/ownership/Ownable.test.js +++ b/test/ownership/Ownable.test.js @@ -1,4 +1,4 @@ -require('openzeppelin-test-helpers'); +const { shouldFail } = require('openzeppelin-test-helpers'); const { shouldBehaveLikeOwnable } = require('./Ownable.behavior'); const Ownable = artifacts.require('OwnableMock');