From 41b8f06f51fd8cf67696a95446c0e3273d6c7eeb Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Sun, 12 May 2024 23:43:05 +0200 Subject: [PATCH] Add 1 more each for < and > --- tests/internal/test_string_compare.odin | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/internal/test_string_compare.odin b/tests/internal/test_string_compare.odin index a8ced485d..ff65b41c2 100644 --- a/tests/internal/test_string_compare.odin +++ b/tests/internal/test_string_compare.odin @@ -15,7 +15,9 @@ Test :: struct { CASES := []Test{ {"hellope", "hellope", {.Eq=true, .Lt=false, .Gt=false}}, {"Hellope", "hellope", {.Eq=false, .Lt=true, .Gt=false}}, // H < h + {"Hell", "Hellope", {.Eq=false, .Lt=true, .Gt=false}}, {"Hellope!", "Hellope", {.Eq=false, .Lt=false, .Gt=true }}, + {"Hellopf", "Hellope", {.Eq=false, .Lt=false, .Gt=true }}, } @test