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

fix: TestListFileNames

This commit is contained in:
dudaodong
2023-04-17 15:32:59 +08:00
parent 815791c0b6
commit 3b8dd94a5c

View File

@@ -235,10 +235,10 @@ func TestMiMeType(t *testing.T) {
func TestListFileNames(t *testing.T) {
assert := internal.NewAssert(t, "TestListFileNames")
filesInPath, err := ListFileNames("../formatter/")
filesInPath, err := ListFileNames("./")
assert.IsNil(err)
expected := []string{"formatter.go", "formatter_example_test.go", "formatter_test.go"}
expected := []string{"file.go", "file_example_test.go", "file_test.go"}
assert.Equal(expected, filesInPath)
}