Skip to content

Commit 3210c45

Browse files
authored
Add test for constant empty string
1 parent c429ce2 commit 3210c45

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

integration_tests/test_str_attributes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ def is_space():
290290
assert "\n".isspace() == True
291291
assert " ".isspace() == True
292292
assert "\r".isspace() == True
293+
assert "".isspace() == False
293294

294295
s: str = " "
295296
assert s.isspace() == True

0 commit comments

Comments
 (0)