We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aae0024 + bf03bd6 commit 1c18dbcCopy full SHA for 1c18dbc
files/multifilereader_test.go
@@ -30,11 +30,7 @@ func TestMultiFileReaderToMultiFile(t *testing.T) {
30
t.Fatal(err)
31
}
32
33
- md, ok := mf.(Directory)
34
- if !ok {
35
- t.Fatal("Expected a directory")
36
- }
37
- it := md.Entries()
+ it := mf.Entries()
38
39
if !it.Next() || it.Name() != "beep.txt" {
40
t.Fatal("iterator didn't work as expected")
@@ -80,11 +76,7 @@ func TestMultiFileReaderToMultiFileSkip(t *testing.T) {
80
76
81
77
82
78
83
84
85
86
87
79
88
89
90
0 commit comments