summary refs log tree commit diff
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@gmail.com>2021-12-02 21:49:59 -0800
committerIrene Knapp <ireneista@gmail.com>2021-12-02 21:49:59 -0800
commit354682636ef508a8d679a0e30711d6b4d464385b (patch)
tree26d4adcd320cab03e1233730f5dd4693d71cf6db
parentd02b18e2f5a7baf46e2c6c8a531b05b9851f5fa4 (diff)
03 test
-rw-r--r--03/tests/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/03/tests/main.rs b/03/tests/main.rs
index b74d88d..67e80d3 100644
--- a/03/tests/main.rs
+++ b/03/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_02")?;
+  let mut command = Command::cargo_bin("advent_03")?;
 
   command.arg("input");
   command.assert().success().stdout(
-      "1813801\n\
-      1960569556\n");
+      "3277364\n\
+      5736383\n");
 
   Ok(())
 }