diff options
Diffstat (limited to '06')
-rw-r--r-- | 06/tests/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/06/tests/main.rs b/06/tests/main.rs index ad291d8..829f000 100644 --- a/06/tests/main.rs +++ b/06/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_05")?; + let mut command = Command::cargo_bin("advent_06")?; command.arg("input"); command.assert().success().stdout( - "4655\n\ - 20500\n"); + "386536\n\ + 1732821262171\n"); Ok(()) } |