Point the 'sort3/simple' test back at sort3

This commit is contained in:
Nate Cook
2018-09-11 11:31:53 -05:00
parent aa34eb24d1
commit 42543e7bba

View File

@@ -227,7 +227,7 @@ Algorithm.test("sort3/simple")
[1, 2, 3], [1, 3, 2], [2, 1, 3], [2, 3, 1], [3, 1, 2], [3, 2, 1]
]) {
var input = $0
input.sort()
input._sort3(0, 1, 2, by: <)
expectEqual([1, 2, 3], input)
}