Skip to content

Commit 6520979

Browse files
Fix test_extract_testsuites to account for new test files
1 parent fc53b39 commit 6520979

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/tests/test_runner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,18 +258,18 @@ def test_extract_testsuites():
258258
]
259259
)
260260
tests = extract_testsuites(args)
261-
assert len(tests) == 9
261+
assert len(tests) == 10
262262

263263
args = parser.parse_args(
264264
args=[
265265
"--test-suites-folder",
266266
"./utils/tests/test_data/test-suites",
267267
"--tests-regex",
268-
".*\.yml",
268+
r".*\.yml",
269269
]
270270
)
271271
tests = extract_testsuites(args)
272-
assert len(tests) == 9
272+
assert len(tests) == 10
273273

274274
args = parser.parse_args(
275275
args=[

0 commit comments

Comments
 (0)