Merge pull request #595 from gfeyer/master

Fix typo in unit test
This commit is contained in:
Igor Mróz 2023-03-10 14:24:45 +01:00 committed by GitHub
commit 6b3ce3245f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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