Skip to content

Commit 864167f

Browse files
authored
Merge pull request #19251 from natecook1000/nc-sort3-testfix
2 parents 6b46213 + 42543e7 commit 864167f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

validation-test/stdlib/Algorithm.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ Algorithm.test("sort3/simple")
227227
[1, 2, 3], [1, 3, 2], [2, 1, 3], [2, 3, 1], [3, 1, 2], [3, 2, 1]
228228
]) {
229229
var input = $0
230-
input.sort()
230+
input._sort3(0, 1, 2, by: <)
231231
expectEqual([1, 2, 3], input)
232232
}
233233

0 commit comments

Comments
 (0)