summary refs log tree commit diff
path: root/06
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@gmail.com>2021-12-07 03:14:11 -0800
committerIrene Knapp <ireneista@gmail.com>2021-12-07 03:14:11 -0800
commit8079dd2a895f8a55368761940eba5670e24d0411 (patch)
tree20f1da1af9ee1de1279556853520b45b978bef0e /06
parent84f096f97b40e7f7394b72e3b54b19804e9ab6ac (diff)
07
Diffstat (limited to '06')
-rw-r--r--06/tests/main.rs6
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(())
 }