diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-12-21 23:29:34 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-12-21 23:29:34 -0800 |
commit | dc2d41806d750ec48cb01a3341028d36866965fe (patch) | |
tree | 9603d6d1e966882fd00f84f36aa3a51eb1e882df /18 | |
parent | 117ab73fa491c4692524068c077d5dd6fb5101bb (diff) |
fix tests
Diffstat (limited to '18')
-rw-r--r-- | 18/tests/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/18/tests/main.rs b/18/tests/main.rs index 394fb0f..47c7314 100644 --- a/18/tests/main.rs +++ b/18/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_17")?; + let mut command = Command::cargo_bin("advent_18")?; command.arg("input"); - command.assert().success().stdout("265\n1936\n"); + command.assert().success().stdout("510009915468\n321176691637769\n"); Ok(()) } |