From ffe5dbd82d9dfad1a6f419e71ba367f3e6344cfa Mon Sep 17 00:00:00 2001 From: Manuel Polzhofer Date: Mon, 30 Mar 2020 21:05:19 +0200 Subject: [PATCH] fix: setUp() tests --- src/note.t.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/src/note.t.sol b/src/note.t.sol index c1f4279..1d05eba 100644 --- a/src/note.t.sol +++ b/src/note.t.sol @@ -18,6 +18,7 @@ import "ds-test/test.sol"; import "./note.sol"; contract DSNoteTest is DSTest, DSNote { + function setUp() public { } function test_0() public { this.foo(); } function test_1() public { this.foo(1); } function test_2() public { this.foo(1, 2); }