Skip to content

Commit

Permalink
Merge pull request #3768 from filecoin-project/fix/chaos-tests
Browse files Browse the repository at this point in the history
fix: chaos tests
  • Loading branch information
raulk authored Sep 11, 2020
2 parents cd98584 + 16f7d58 commit c017d0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conformance/chaos/actor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand All @@ -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()
}
Expand Down

0 comments on commit c017d0f

Please sign in to comment.