From d11b517083333267363e5a6ec78f398578a5b0af Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Mon, 23 May 2022 10:31:24 -0400 Subject: [PATCH] make sure random string gives no hints --- tests/autocomplete.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/autocomplete.rs b/tests/autocomplete.rs index 22b1bd1..dd7a306 100644 --- a/tests/autocomplete.rs +++ b/tests/autocomplete.rs @@ -118,6 +118,7 @@ fn multi() { fn none() { // string that should give no hints let random = "qwert987gybhj"; + assert_eq!(parsing::generate_hint(random), &Hint::None); ac_tester(&[ SetString(random),