Browse Source

修改bug

yjp 1 year ago
parent
commit
b354d01068

+ 7 - 0
fileutils/fileutils_test.go

@@ -67,6 +67,13 @@ func TestZip(t *testing.T) {
 		t.Fatal(err)
 	}
 
+	defer func() {
+		err := os.RemoveAll(destUnzipBytesDir)
+		if err != nil {
+			t.Fatal(err)
+		}
+	}()
+
 	checkTestDir(t, filepath.Join(destUnzipBytesDir, "test_dir"))
 }
 

+ 0 - 0
fileutils/unzip_bytes_test_dir/test_dir/test.txt


+ 0 - 0
fileutils/unzip_bytes_test_dir/test_dir/test_sub_dir/test_sub.txt


+ 1 - 1
redis-lock/lock.go → redislock/lock.go

@@ -1,4 +1,4 @@
-package redis_lock
+package redislock
 
 import (
 	"context"

+ 1 - 1
redis-lock/lock_test.go → redislock/lock_test.go

@@ -1,4 +1,4 @@
-package redis_lock
+package redislock
 
 import (
 	"fmt"