From c5645d798f3a80595321b2594f51f9fa7d8de464 Mon Sep 17 00:00:00 2001 From: Joe Thornber Date: Tue, 19 Oct 2021 14:25:56 +0100 Subject: [PATCH] [tests/thin_delta] fix bad_option check --- tests/thin_delta.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/thin_delta.rs b/tests/thin_delta.rs index c9d355a..f5c4e1c 100644 --- a/tests/thin_delta.rs +++ b/tests/thin_delta.rs @@ -46,7 +46,7 @@ impl<'a> Program<'a> for ThinDelta { } fn bad_option_hint(option: &str) -> String { - msg::bad_option_hint(option) + format!("unrecognized option '{}'", option) } }