We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a266116 commit e3652a1Copy full SHA for e3652a1
tests/integration/feeds/test_feeds_client.py
@@ -18,6 +18,7 @@
18
/ "test_files"
19
/ "sample-measurement_0.5.0_windows_x64.nipkg"
20
)
21
+PREFIX = "Feeds Client Test -"
22
23
24
@pytest.fixture(scope="class")
@@ -80,7 +81,7 @@ def _get_feed_name():
80
81
82
first_char = random.choice(string.ascii_letters)
83
uuid_part = uuid.uuid4().hex
- feed_name = f"{first_char}{uuid_part}"
84
+ feed_name = f"{PREFIX}{first_char}{uuid_part}"
85
86
return feed_name
87
0 commit comments