Skip to content

Commit 7aea820

Browse files
committed
Fix test_sanitized_uuid to assert that '_' is not present in the generated UUID string
1 parent bcba08a commit 7aea820

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ def test_sanitized_uuid():
3333
generator = uuid_field('US')
3434
uuid_str = generator()
3535
assert "-" not in uuid_str
36-
assert "-" not in uuid_str
36+
assert "_" not in uuid_str

0 commit comments

Comments
 (0)