Skip to content

Commit

Permalink
Merge pull request #7292 from filecoin-project/nonsense/fix-flaky-tes…
Browse files Browse the repository at this point in the history
…t-increase-deal-size

itests: remove cid equality comparison
  • Loading branch information
Stebalien authored Sep 7, 2021
2 parents 0216697 + 567d054 commit b093d8a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions itests/deals_max_staging_deals_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,11 @@ func TestMaxStagingDeals(t *testing.T) {
list, err := client.ClientListImports(ctx)
require.NoError(t, err)
require.Len(t, list, 1)
require.Equal(t, res.Root, *list[0].Root)

res2, _ := client.CreateImportFile(ctx, 0, 4096)
list, err = client.ClientListImports(ctx)
require.NoError(t, err)
require.Len(t, list, 2)
require.Equal(t, res2.Root, *list[1].Root)

// first deal stays in staging area, and is not yet passed to the sealing subsystem
dp := dh.DefaultStartDealParams()
Expand Down

0 comments on commit b093d8a

Please sign in to comment.