Skip to content

Commit a266116

Browse files
committed
fix: remove unwanted filtering in feedname generation
1 parent ab28a0c commit a266116

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/integration/feeds/test_feeds_client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,8 @@ def _get_feed_name():
8080

8181
first_char = random.choice(string.ascii_letters)
8282
uuid_part = uuid.uuid4().hex
83-
allowed_chars = string.ascii_letters + string.digits + " _-"
84-
filtered_uuid = "".join(char for char in uuid_part if char in allowed_chars)
83+
feed_name = f"{first_char}{uuid_part}"
8584

86-
feed_name = f"{first_char}{filtered_uuid}"
8785
return feed_name
8886

8987
yield _get_feed_name

0 commit comments

Comments
 (0)