Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
amsanghi committed Jan 31, 2024
1 parent 9af7679 commit 388d1e8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions system_tests/state_provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// For license information, see https://github.com/offchainlabs/bold/blob/main/LICENSE

// race detection makes things slow and miss timeouts
//go:build challengetest && !race

package arbtest

Expand Down Expand Up @@ -159,7 +158,7 @@ func TestStateProvider_BOLD(t *testing.T) {
stateRoots, err := stateManager.StatesInBatchRange(fromHeight, toHeight, fromBatch, toBatch)
Require(t, err)

if stateRoots.Length() != 15 {
if len(stateRoots) != 15 {
Fatal(t, "wrong number of state roots")
}
})
Expand Down

0 comments on commit 388d1e8

Please sign in to comment.