Skip to content

Commit 67830c3

Browse files
committed
update test
1 parent 080be20 commit 67830c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/scripts/end_to_end_test_utilities.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ def run_trace_test(cwd: pathlib.Path, config: TestConfig, expected_improvement_p
202202
return False
203203

204204
functions_traced = re.search(r"Traced (\d+) function calls successfully and replay test created at - (.*)$", stdout)
205-
if not functions_traced or int(functions_traced.group(1)) != 5:
206-
logging.error("Expected 5 traced functions")
205+
if not functions_traced or int(functions_traced.group(1)) != 4:
206+
logging.error("Expected 4 traced functions")
207207
return False
208208

209209
replay_test_path = pathlib.Path(functions_traced.group(2))

0 commit comments

Comments
 (0)