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 <simon.hellsten@hotmail.com>
  • Loading branch information
Simon Hellsten committed Apr 29, 2024
1 parent a91ff01 commit d5907e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/test/builtin/test_string_literal.mojo
Original file line number Diff line number Diff line change
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 d5907e7

Please sign in to comment.