Skip to content

Commit e81f25f

Browse files
committed
fix: remove stale repeatString assertions from integration tests
repeatString was removed from Workload.java in the E2E reduction.
1 parent 0772398 commit e81f25f

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

tests/test_languages/test_java/test_java_tracer_integration.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ def test_discover_functions_from_replay_tests(self, traced_workload: tuple) -> N
8888
assert func.file_path == file_path
8989

9090
assert "computeSum" in all_func_names
91-
assert "repeatString" in all_func_names
9291

9392
def test_discover_tests_for_replay_tests(self, traced_workload: tuple) -> None:
9493
"""Test that test discovery maps replay tests to source functions."""
@@ -112,7 +111,6 @@ def test_discover_tests_for_replay_tests(self, traced_workload: tuple) -> None:
112111
matched_func_names.add(func_name)
113112

114113
assert "computeSum" in matched_func_names, f"computeSum not found in: {result.keys()}"
115-
assert "repeatString" in matched_func_names, f"repeatString not found in: {result.keys()}"
116114

117115
# Each function should have at least one test
118116
for func_name, test_infos in result.items():

0 commit comments

Comments
 (0)