Skip to content

Commit 4dcd312

Browse files
committed
update test to reflect new do_expedition print statements
1 parent cd9d1b0 commit 4dcd312

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/expedition/test_do_expedition.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@
88
def test_do_expedition(capfd: CaptureFixture) -> None:
99
do_expedition("expedition_dir", input_data=Path("expedition_dir/input_data"))
1010
out, _ = capfd.readouterr()
11-
assert "This expedition took" in out, "Expedition did not complete successfully."
11+
assert "Your expedition has concluded successfully!" in out, (
12+
"Expedition did not complete successfully."
13+
)

0 commit comments

Comments
 (0)