Skip to content

Commit

Permalink
fix test cases on Windows
Browse files Browse the repository at this point in the history
on Windows f.Readdir returns no error if f is closed

Signed-off-by: Nicola Murino <[email protected]>
  • Loading branch information
drakkan committed Feb 17, 2024
1 parent 849f0bd commit e2ff12c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions internal/common/connection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1129,9 +1129,13 @@ func TestListerAt(t *testing.T) {
err = lister.Close()
require.NoError(t, err)
n, err = lister.ListAt(files, 0)
require.Error(t, err)
require.NotErrorIs(t, err, io.EOF)
require.Equal(t, 0, n)
if runtime.GOOS == "windows" {
assert.NoError(t, err)
} else {
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 e2ff12c

Please sign in to comment.