Skip to content

Commit 20d61ea

Browse files
Fixed missing update tests
1 parent 3e04c24 commit 20d61ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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) == 7
261+
assert len(tests) == 9
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) == 7
272+
assert len(tests) == 9
273273

274274
args = parser.parse_args(
275275
args=[

utils/tests/test_topologies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ def test_extract_redis_configuration_from_topology():
2121
topologies_map, "oss-standalone-04-io-threads"
2222
)
2323
assert res != ""
24-
assert "--io-threads 4 io-threads-do-reads yes" in res
24+
assert "--io-threads 4 --io-threads-do-reads yes" in res

0 commit comments

Comments
 (0)