Skip to content

Commit d266008

Browse files
committed
5 expected traced functions, not 3
1 parent c38db44 commit d266008

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
@@ -251,8 +251,8 @@ def run_trace_test2(cwd: pathlib.Path, config: TestConfig, expected_improvement_
251251
return False
252252

253253
functions_traced = re.search(r"Traced (\d+) function calls successfully and replay test created at - (.*)$", stdout)
254-
if not functions_traced or int(functions_traced.group(1)) != 3:
255-
logging.error("Expected 3 traced functions")
254+
if not functions_traced or int(functions_traced.group(1)) != 5:
255+
logging.error("Expected 5 traced functions")
256256
return False
257257

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

0 commit comments

Comments
 (0)