Skip to content

Commit

Permalink
fix test cases on Windows (again)
Browse files Browse the repository at this point in the history
in Go 1.22 Readdir now works on Windows in the same way as on other
platforms

Signed-off-by: Nicola Murino <[email protected]>
  • Loading branch information
drakkan committed Feb 18, 2024
1 parent 19d405f commit b4afdac
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions internal/common/connection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1129,13 +1129,9 @@ func TestListerAt(t *testing.T) {
err = lister.Close()
require.NoError(t, err)
n, err = lister.ListAt(files, 0)
if runtime.GOOS == "windows" {
assert.NoError(t, err)
} else {
assert.Error(t, err)
assert.NotErrorIs(t, err, io.EOF)
require.Equal(t, 0, n)
}
assert.Error(t, err)
assert.NotErrorIs(t, err, io.EOF)
require.Equal(t, 0, n)
lister, err = conn.ListDir("/")
require.NoError(t, err)
lister.Add(vfs.NewFileInfo("..", true, 0, time.Unix(0, 0), false))
Expand Down

0 comments on commit b4afdac

Please sign in to comment.