Skip to content

Commit 34c0700

Browse files
Fixed test length check on CI
1 parent 32d31ec commit 34c0700

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/tests/test_runner.py

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

263263
args = parser.parse_args(
264264
args=[
@@ -269,7 +269,7 @@ def test_extract_testsuites():
269269
]
270270
)
271271
tests = extract_testsuites(args)
272-
assert len(tests) == 6
272+
assert len(tests) == 7
273273

274274
args = parser.parse_args(
275275
args=[

0 commit comments

Comments
 (0)