diff --git a/integration/tests/access/cohort3/execution_state_sync_test.go b/integration/tests/access/cohort3/execution_state_sync_test.go index 35d25263399..7d6118ef4b8 100644 --- a/integration/tests/access/cohort3/execution_state_sync_test.go +++ b/integration/tests/access/cohort3/execution_state_sync_test.go @@ -205,12 +205,5 @@ func (s *ExecutionStateSyncSuite) nodeExecutionDataStore(node *testnet.Container ds, err := badgerds.NewDatastore(filepath.Join(node.ExecutionDataDBPath(), "blobstore"), &badgerds.DefaultOptions) require.NoError(s.T(), err, "could not get execution datastore") - go func() { - <-s.ctx.Done() - if err := ds.Close(); err != nil { - s.T().Logf("could not close execution data datastore: %v", err) - } - }() - return execution_data.NewExecutionDataStore(blobs.NewBlobstore(ds), execution_data.DefaultSerializer) }