Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apps/api/plane/tests/unit/utils/test_uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,7 @@ def test_convert_uuid_to_integer_string_input(self):

# Should get the same result whether passing UUID or string
assert convert_uuid_to_integer(test_uuid) == convert_uuid_to_integer(test_uuid_str)

def test_is_valid_uuid_with_none(self):
"""Test is_valid_uuid returns False for None input"""
assert is_valid_uuid(None) is False
Comment on lines +55 to +57
Loading