Skip to content

Commit 447498c

Browse files
committed
Remove unused test path
1 parent 42a798e commit 447498c

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

tests/launcher/test_experiments.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,5 @@ def test_select_experiment_multiple_experiments_discovered_and_logs_constant(cap
2929
assert {"first_experiment", "second_experiment"}.issubset(names)
3030
assert selected.name == "first_experiment"
3131

32-
caplog.clear()
33-
caplog.set_level("INFO")
3432
launcher = Mock()
35-
launcher.logger = Mock()
36-
3733
selected.func(launcher)
38-
39-
# Check that logger.info was called with the formatted constant.
40-
from mock_third_party_pkg import mock_constant # type: ignore[import]
41-
42-
expected = f"running first_experiment with mock_constant={mock_constant}"
43-
launcher.logger.info.assert_any_call(expected)

0 commit comments

Comments
 (0)