From 0fd2e29804c0daf5255ef0a3f3ab60d10e4b38f6 Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Wed, 22 Aug 2018 16:59:29 +0700 Subject: [PATCH] SQUASHME: Fix typo --- backend.native/tests/runtime/collections/SortWith.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.native/tests/runtime/collections/SortWith.kt b/backend.native/tests/runtime/collections/SortWith.kt index 5fe250d9e58..d9dda1e93cc 100644 --- a/backend.native/tests/runtime/collections/SortWith.kt +++ b/backend.native/tests/runtime/collections/SortWith.kt @@ -44,7 +44,7 @@ val comparators = listOf( ComparatorInfo("Incorrect decreasing", Comparator { a ,b -> if (a < b) 1 else -1 }, false), ComparatorInfo("Always 1", Comparator { a ,b -> 1 }, false), ComparatorInfo("Always -1", Comparator { a ,b -> -1 }, false), - ComparatorInfo("Alwasy 0", Comparator { a ,b -> 0 }, false) + ComparatorInfo("Always 0", Comparator { a ,b -> 0 }, false) ) val arrays = listOf>(