File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -80,10 +80,10 @@ func TestRealPath(t *testing.T) {
8080 t .Errorf ("Got error %s" , err )
8181 }
8282
83- excpected := filepath .Join (baseDir , anotherDir )
83+ expected := filepath .Join (baseDir , anotherDir )
8484
85- if surrealPath != excpected {
86- t .Errorf ("Expected \n %s got \n %s" , excpected , surrealPath )
85+ if surrealPath != expected {
86+ t .Errorf ("Expected \n %s got \n %s" , expected , surrealPath )
8787 }
8888 }
8989}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import (
1919
2020// Lstater is an optional interface in Afero. It is only implemented by the
2121// filesystems saying so.
22- // It will call Lstat if the filesystem iself is, or it delegates to, the os filesystem.
22+ // It will call Lstat if the filesystem itself is, or it delegates to, the os filesystem.
2323// Else it will call Stat.
2424// In addition to the FileInfo, it will return a boolean telling whether Lstat was called or not.
2525type Lstater interface {
You can’t perform that action at this time.
0 commit comments