From ee0d2f9dd0a1941d44b7f233c2e1967141f305de Mon Sep 17 00:00:00 2001 From: Gabriel Feyer Date: Thu, 23 Feb 2023 16:10:30 -0500 Subject: [PATCH] Fix typo in unit test --- tests/unittest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unittest.cpp b/tests/unittest.cpp index 689650304..258ba8c33 100644 --- a/tests/unittest.cpp +++ b/tests/unittest.cpp @@ -1256,7 +1256,7 @@ TEST_CASE("template_false_tag") { auto t = crow::mustache::compile(R"---({{false_value}})---"); crow::mustache::context ctx; - ctx["false_value"] = false;d + ctx["false_value"] = false; auto result = t.render_string(ctx); CHECK("false" == result); } // template_false_tag