1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-11 00:02:28 +08:00

fix: fix IsExist function in fileutil/file.go

This commit is contained in:
dudaodong
2021-11-29 20:23:26 +08:00
parent 561b590e13
commit 4e5d3c2603
2 changed files with 3 additions and 3 deletions

View File

@@ -9,8 +9,8 @@ import (
)
func TestIsExist(t *testing.T) {
cases := []string{"./", "./a.txt"}
expected := []bool{true, false}
cases := []string{"./", "./file.go", "./a.txt"}
expected := []bool{true, true, false}
for i := 0; i < len(cases); i++ {
res := IsExist(cases[i])