From 4f27902a619dd33e53940d24516461b363f8fbb3 Mon Sep 17 00:00:00 2001 From: Arne Keller Date: Thu, 18 Oct 2018 19:14:49 +0200 Subject: [PATCH] Modify test to account for changed CLI argument --- tests/all.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/all.rs b/tests/all.rs index 40a2f0e..bc2c64e 100644 --- a/tests/all.rs +++ b/tests/all.rs @@ -42,7 +42,7 @@ fn length_amount() { #[test] fn ascii() { - let (out, _) = exe!("-a", "1", "10"); + let (out, _) = exe!("-c", "ascii", "--", "1", "10"); assert_eq!(out.len(), 10); for line in &out { assert_eq!(line.chars().count(), 1);