We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 909c642 commit a43abb8Copy full SHA for a43abb8
internal/lzss/lzss_test.go
@@ -14,12 +14,12 @@ func TestEncode(t *testing.T) {
14
}{
15
{
16
name: "lorem",
17
- infile: "testdata/lorem.txt",
+ infile: "testdata/lorem",
18
outfile: "testdata/lorem.lzss",
19
},
20
21
name: "short",
22
- infile: "testdata/short.txt",
+ infile: "testdata/short",
23
outfile: "testdata/short.lzss",
24
25
@@ -29,7 +29,7 @@ func TestEncode(t *testing.T) {
29
30
31
name: "repetitive",
32
- infile: "testdata/repetitive.txt",
+ infile: "testdata/repetitive",
33
outfile: "testdata/repetitive.lzss",
34
35
internal/lzss/testdata/lorem.txt renamed to internal/lzss/testdata/lorem
internal/lzss/testdata/repetitive.txt renamed to internal/lzss/testdata/repetitive
internal/lzss/testdata/short.txt renamed to internal/lzss/testdata/short
0 commit comments