Skip to content

Commit c250f8d

Browse files
committed
fix: resolve compilation error in path_windows_test.go
Fixed test case structure where string was passed directly instead of being wrapped in args struct, which caused build failure.
1 parent dd5217c commit c250f8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

path_windows_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ func TestGetRealPath(t *testing.T) {
1515
}{
1616
{
1717
"Test Windows Path",
18-
"C:\\Users\\appleboy\\test.txt",
18+
args{"C:\\Users\\appleboy\\test.txt"},
1919
"/C/Users/appleboy/test.txt",
2020
},
2121
}

0 commit comments

Comments
 (0)