diff options
author | Irene Knapp <ireneista@gmail.com> | 2021-12-20 22:59:31 -0800 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2021-12-20 22:59:31 -0800 |
commit | 4cf1061e00993118847c24177ea2cc1e5455211d (patch) | |
tree | b860ec35b291da013798698d1f312a53c2d8e2fc /20/tests | |
parent | da3d98b651738c2341bafa4b3c5e1de162b4a9f8 (diff) |
21
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"); |