aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeoramund <161657516+Feoramund@users.noreply.github.com>2024-05-28 19:14:28 -0400
committerFeoramund <161657516+Feoramund@users.noreply.github.com>2024-06-02 14:47:06 -0400
commit1afc235359334aa2b7df0e4b4c79386763076e75 (patch)
treed31ccd79bfe2b0a05253a6b228c4d8de6976b480
parent09ef08f0354cd68ca589e3c6d094f08d08a48d78 (diff)
Use plain sort for `internal_tests`
-rw-r--r--core/testing/runner.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/testing/runner.odin b/core/testing/runner.odin
index ce5aa112a..1a9fc3ddc 100644
--- a/core/testing/runner.odin
+++ b/core/testing/runner.odin
@@ -192,7 +192,7 @@ runner :: proc(internal_tests: []Internal_Test) -> bool {
fmt.assertf(it.p != nil, "Test %s.%s has <nil> procedure.", it.pkg, it.name)
}
- slice.stable_sort_by(internal_tests, proc(a, b: Internal_Test) -> bool {
+ slice.sort_by(internal_tests, proc(a, b: Internal_Test) -> bool {
if a.pkg == b.pkg {
return a.name < b.name
} else {