Skip to content

Commit ada85d9

Browse files
authored
Test/small regex fix (#489)
## 📝 Description Small regex fix to catch tag field if it exists ## ✔️ How to Test make testint **How do I run the relevant unit/integration tests?** make testint ## 📷 Preview **If applicable, include a screenshot or code snippet of this change. Otherwise, please remove this section.**
1 parent f1a64ae commit ada85d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/volumes/test_volumes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def test_list_volume(setup_test_volumes):
150150
BASE_CMD + ["list", "--text", "--no-headers", "--delimiter", ","]
151151
).stdout.decode()
152152
assert re.search(
153-
"[0-9]+,[A-Za-z0-9]+,(creating|active|offline),10,[a-z-]+", result
153+
"[0-9]+,[A-Za-z0-9].*,.*,(creating|active|offline),.*", result
154154
)
155155

156156

0 commit comments

Comments
 (0)