Merge pull request #9785 from filecoin-project/fix/chainimport-test-flaky
fix: chain: Fix flaky TestChainExportImport
This commit is contained in:
commit
94e4f1baa5
@ -110,7 +110,7 @@ func TestChainExportImport(t *testing.T) {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
nbs := blockstore.NewMemory()
|
||||
nbs := blockstore.NewMemorySync()
|
||||
cs := store.NewChainStore(nbs, nbs, datastore.NewMapDatastore(), filcns.Weight, nil)
|
||||
defer cs.Close() //nolint:errcheck
|
||||
|
||||
@ -148,7 +148,7 @@ func TestChainExportImportFull(t *testing.T) {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
nbs := blockstore.NewMemory()
|
||||
nbs := blockstore.NewMemorySync()
|
||||
cs := store.NewChainStore(nbs, nbs, datastore.NewMapDatastore(), filcns.Weight, nil)
|
||||
defer cs.Close() //nolint:errcheck
|
||||
|
||||
|
@ -51,7 +51,7 @@ var genesisVerifyCmd = &cli.Command{
|
||||
if !cctx.Args().Present() {
|
||||
return fmt.Errorf("must pass genesis car file")
|
||||
}
|
||||
bs := blockstore.FromDatastore(datastore.NewMapDatastore())
|
||||
bs := blockstore.NewMemory()
|
||||
|
||||
cs := store.NewChainStore(bs, bs, datastore.NewMapDatastore(), filcns.Weight, nil)
|
||||
defer cs.Close() //nolint:errcheck
|
||||
|
Loading…
Reference in New Issue
Block a user