We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab28a0c commit a266116Copy full SHA for a266116
tests/integration/feeds/test_feeds_client.py
@@ -80,10 +80,8 @@ def _get_feed_name():
80
81
first_char = random.choice(string.ascii_letters)
82
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)
+ feed_name = f"{first_char}{uuid_part}"
85
86
- feed_name = f"{first_char}{filtered_uuid}"
87
return feed_name
88
89
yield _get_feed_name
0 commit comments