Fix tests after changing output
This commit is contained in:
parent
fc98cf0037
commit
b2fb28453f
@ -644,7 +644,7 @@ def test_start_list_strategies(mocker, caplog, capsys):
|
||||
start_list_strategies(pargs)
|
||||
captured = capsys.readouterr()
|
||||
assert "TestStrategyLegacy" in captured.out
|
||||
assert str(Path("strategy/legacy_strategy.py")) not in captured.out
|
||||
assert "legacy_strategy.py" not in captured.out
|
||||
assert "DefaultStrategy" in captured.out
|
||||
|
||||
# Test regular output
|
||||
@ -658,7 +658,7 @@ def test_start_list_strategies(mocker, caplog, capsys):
|
||||
start_list_strategies(pargs)
|
||||
captured = capsys.readouterr()
|
||||
assert "TestStrategyLegacy" in captured.out
|
||||
assert str(Path("strategy/legacy_strategy.py")) in captured.out
|
||||
assert "legacy_strategy.py" in captured.out
|
||||
assert "DefaultStrategy" in captured.out
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user