summary refs log tree commit diff
path: root/24/tests
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@gmail.com>2020-12-24 21:21:35 -0800
committerIrene Knapp <ireneista@gmail.com>2020-12-24 21:21:35 -0800
commit4e80f27c8e64891a488e8563f993e4642898e10e (patch)
tree622b6589e8948626fcbc0839d71f8ff191a79f7b /24/tests
parentbc3acb749d563a5d5db1551b40b433a900d4c154 (diff)
25! yay :) HEAD main
Diffstat (limited to '24/tests')
-rw-r--r--24/tests/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/24/tests/main.rs b/24/tests/main.rs
index 4b8bde1..e935dc8 100644
--- a/24/tests/main.rs
+++ b/24/tests/main.rs
@@ -4,10 +4,10 @@ use std::process::Command;
 
 #[test]
 fn personal_input() -> Result<(), Box<dyn std::error::Error>> {
-  let mut command = Command::cargo_bin("advent_23")?;
+  let mut command = Command::cargo_bin("advent_24")?;
 
   command.arg("input");
-  command.assert().success().stdout("24798635\n12757828710\n");
+  command.assert().success().stdout("230\n3565\n");
 
   Ok(())
 }