Skip to content

Commit

Permalink
[stdlib] Minor comment fix. Re: Cleaned up test_comparison_operators(…
Browse files Browse the repository at this point in the history
…) in test_string_literal.mojo and test_string.mojo in an attempt to make the tests more readable.

Signed-off-by: Simon Hellsten <simonhellsten@hotmail.com>
  • Loading branch information
siitron committed Apr 29, 2024
1 parent 85c0e50 commit b782246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/test/builtin/test_string_literal.mojo
Expand Up @@ -95,7 +95,7 @@ fn test_comparison_operators() raises:
assert_false("ab" >= "abc")
assert_true("abcd" >= "abc")

# Test case sensitivity in comparison
# Test case sensitivity in comparison (assuming ASCII order)
assert_true("abc" > "ABC")
assert_false("abc" <= "ABC")

Expand Down

0 comments on commit b782246

Please sign in to comment.