summary refs log tree commit diff
path: root/08/tests
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@gmail.com>2021-12-08 21:28:44 -0800
committerIrene Knapp <ireneista@gmail.com>2021-12-08 21:28:44 -0800
commitfb70e46dc0009c69f617135b0249cdda31b978bf (patch)
tree96864a9334c6c0c9630b6a65da2e9f03fc6b1fb9 /08/tests
parent5879332d34745c8fa22881b899edbb04d31beb2b (diff)
09 :)
Diffstat (limited to '08/tests')
-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(())
 }