From 6fa14c0b84d3c20e76b0fd030899bfcdfbe53e15 Mon Sep 17 00:00:00 2001 From: Nils Pukropp Date: Wed, 1 Apr 2026 14:27:26 +0200 Subject: [PATCH] fixed testcase --- src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index 7d4494f..c32b246 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -189,7 +189,7 @@ mod tests { #[test] fn test_no_tokens() { - let result = format_template("plain text", &[]); + let result = format_template::<&'static str>("plain text", &[]); assert_eq!(result, "plain text"); }