Browse Source

fix test

pull/1743/head
Chris Lu 4 years ago
parent
commit
def6d8e565
  1. 4
      weed/filer/leveldb3/leveldb3_store_test.go

4
weed/filer/leveldb3/leveldb3_store_test.go

@ -15,7 +15,7 @@ func TestCreateAndFind(t *testing.T) {
dir, _ := ioutil.TempDir("", "seaweedfs_filer_test")
defer os.RemoveAll(dir)
store := &LevelDB3Store{}
store.initialize(dir, 2)
store.initialize(dir)
testFiler.SetStore(store)
fullpath := util.FullPath("/home/chris/this/is/one/file1.jpg")
@ -69,7 +69,7 @@ func TestEmptyRoot(t *testing.T) {
dir, _ := ioutil.TempDir("", "seaweedfs_filer_test2")
defer os.RemoveAll(dir)
store := &LevelDB3Store{}
store.initialize(dir, 2)
store.initialize(dir)
testFiler.SetStore(store)
ctx := context.Background()

Loading…
Cancel
Save