test(internal/fs): fix test function name (#4235)

This commit is contained in:
Salim Absi
2025-05-20 13:29:39 +03:00
committed by GitHub
parent da67cc1b98
commit 2e2bd1f408
+1 -1
View File
@@ -18,7 +18,7 @@ func (m *mockFileSystem) Open(name string) (http.File, error) {
return m.open(name)
}
func TesFileSystem_Open(t *testing.T) {
func TestFileSystem_Open(t *testing.T) {
var testFile *os.File
mockFS := &mockFileSystem{
open: func(name string) (http.File, error) {