swarm/storage: release chunk storage after stop swarm (#3651)

closes #3650
This commit is contained in:
Maksim
2017-02-09 00:01:12 +07:00
committed by Felix Lange
parent fa99986143
commit 6dd27e7cff
8 changed files with 36 additions and 9 deletions

View File

@ -38,7 +38,7 @@ func initDbStore(t *testing.T) *DbStore {
func testDbStore(l int64, branches int64, t *testing.T) {
m := initDbStore(t)
defer m.close()
defer m.Close()
testStore(m, l, branches, t)
}
@ -64,7 +64,7 @@ func TestDbStore2_100_(t *testing.T) {
func TestDbStoreNotFound(t *testing.T) {
m := initDbStore(t)
defer m.close()
defer m.Close()
_, err := m.Get(ZeroKey)
if err != notFound {
t.Errorf("Expected notFound, got %v", err)
@ -73,7 +73,7 @@ func TestDbStoreNotFound(t *testing.T) {
func TestDbStoreSyncIterator(t *testing.T) {
m := initDbStore(t)
defer m.close()
defer m.Close()
keys := []Key{
Key(common.Hex2Bytes("0000000000000000000000000000000000000000000000000000000000000000")),
Key(common.Hex2Bytes("4000000000000000000000000000000000000000000000000000000000000000")),