Skip to content

Commit 85f96fe

Browse files
authored
Fix assertion in CI workflow for string.lower test
1 parent a890e32 commit 85f96fe

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ jobs:
2727
print(f"{lg.string = }")
2828
print(f"{lg.string.lower = }")
2929
print(f"{lg.string.lower('Hello world!') = }")
30-
assert lg.string.lower('Hello world!') == 'Hello world!'
30+
assert lg.string.lower('Hello world!') != 'Hello world!'
31+
assert lg.string.lower('Hello world!') == 'hello world!'

0 commit comments

Comments
 (0)