Add test with unsorted strings for Merge function in sort_test.go

remove test single-unsorted from external-sort/sort_test.go
This commit is contained in:
gentoonofb 2021-03-09 14:21:21 +00:00 committed by Arseny Balobanov
parent 5d0c7fd413
commit 4ee2beb918

View file

@ -32,15 +32,6 @@ func TestMerge(t *testing.T) {
1
1
2
`,
},
{
// Merge believes lines are read in sorted order.
name: "single-unsorted-file",
in: []string{`1
0`},
out: `1
0
`,
},
} {