diff options
Diffstat (limited to '20/tests')
-rw-r--r-- | 20/tests/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/20/tests/main.rs b/20/tests/main.rs index 826e079..f681209 100644 --- a/20/tests/main.rs +++ b/20/tests/main.rs @@ -7,7 +7,7 @@ use std::process::Command; fn personal_input() -> Result<(), Box<dyn std::error::Error>> { let mut command = Command::cargo_bin("advent_20")?; - command.arg("small"); + command.arg("input"); command.assert().success().stdout( "5573\n\ 20097\n"); |