Skip to content

Commit e3652a1

Browse files
committed
fix: add prefix to the feed name format
1 parent a266116 commit e3652a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/feeds/test_feeds_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
/ "test_files"
1919
/ "sample-measurement_0.5.0_windows_x64.nipkg"
2020
)
21+
PREFIX = "Feeds Client Test -"
2122

2223

2324
@pytest.fixture(scope="class")
@@ -80,7 +81,7 @@ def _get_feed_name():
8081

8182
first_char = random.choice(string.ascii_letters)
8283
uuid_part = uuid.uuid4().hex
83-
feed_name = f"{first_char}{uuid_part}"
84+
feed_name = f"{PREFIX}{first_char}{uuid_part}"
8485

8586
return feed_name
8687

0 commit comments

Comments
 (0)