mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
fix: remove stale repeatString assertions from integration tests
repeatString was removed from Workload.java in the E2E reduction.
This commit is contained in:
parent
0772398c59
commit
e81f25f825
1 changed files with 0 additions and 2 deletions
|
|
@ -88,7 +88,6 @@ class TestFunctionDiscoveryFromReplayTests:
|
|||
assert func.file_path == file_path
|
||||
|
||||
assert "computeSum" in all_func_names
|
||||
assert "repeatString" in all_func_names
|
||||
|
||||
def test_discover_tests_for_replay_tests(self, traced_workload: tuple) -> None:
|
||||
"""Test that test discovery maps replay tests to source functions."""
|
||||
|
|
@ -112,7 +111,6 @@ class TestFunctionDiscoveryFromReplayTests:
|
|||
matched_func_names.add(func_name)
|
||||
|
||||
assert "computeSum" in matched_func_names, f"computeSum not found in: {result.keys()}"
|
||||
assert "repeatString" in matched_func_names, f"repeatString not found in: {result.keys()}"
|
||||
|
||||
# Each function should have at least one test
|
||||
for func_name, test_infos in result.items():
|
||||
|
|
|
|||
Loading…
Reference in a new issue