summary refs log tree commit diff
path: root/08
diff options
context:
space:
mode:
Diffstat (limited to '08')
-rw-r--r--08/tests/main.rs6
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(())
 }