diff options
Diffstat (limited to '08')
-rw-r--r-- | 08/tests/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/08/tests/main.rs b/08/tests/main.rs index e9b1eb4..0d8f9ba 100644 --- a/08/tests/main.rs +++ b/08/tests/main.rs @@ -5,12 +5,12 @@ use std::process::Command; #[test] fn personal_input() -> Result<(), Box<dyn std::error::Error>> { - let mut command = Command::cargo_bin("advent_07")?; + let mut command = Command::cargo_bin("advent_08")?; command.arg("input"); command.assert().success().stdout( - "343441\n\ - 98925151\n"); + "255\n\ + 982158\n"); Ok(()) } |