From 16f7d5801b5d8c815a38cffe89d96a27928525f2 Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Fri, 11 Sep 2020 15:25:59 +0100 Subject: [PATCH] fix: chaos tests --- conformance/chaos/actor_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conformance/chaos/actor_test.go b/conformance/chaos/actor_test.go index 97c3b85cf..a08267022 100644 --- a/conformance/chaos/actor_test.go +++ b/conformance/chaos/actor_test.go @@ -4,8 +4,8 @@ import ( "context" "testing" + "github.com/filecoin-project/go-state-types/abi" "github.com/filecoin-project/go-state-types/exitcode" - "github.com/filecoin-project/specs-actors/actors/util/adt" "github.com/filecoin-project/specs-actors/support/mock" atesting "github.com/filecoin-project/specs-actors/support/testing" ) @@ -19,7 +19,7 @@ func TestSingleton(t *testing.T) { msg := "constructor should not be called; the Chaos actor is a singleton actor" rt.ExpectAssertionFailure(msg, func() { - rt.Call(a.Constructor, adt.Empty) + rt.Call(a.Constructor, abi.Empty) }) rt.Verify() }