From 4ee2beb918b9419929d0790888f18453cddf48e4 Mon Sep 17 00:00:00 2001 From: gentoonofb Date: Tue, 9 Mar 2021 14:21:21 +0000 Subject: [PATCH] Add test with unsorted strings for Merge function in sort_test.go remove test single-unsorted from external-sort/sort_test.go --- externalsort/sort_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/externalsort/sort_test.go b/externalsort/sort_test.go index 57e4931..2d41774 100644 --- a/externalsort/sort_test.go +++ b/externalsort/sort_test.go @@ -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 `, }, } {