diff --git a/test/specs_lambdas.hpp b/test/specs_lambdas.hpp index 6749318..951b1b4 100644 --- a/test/specs_lambdas.hpp +++ b/test/specs_lambdas.hpp @@ -5,9 +5,6 @@ std::map> specs_lambd {"Interpolation - Expansion", [](const std::string&) { return "{{planet}}"; }}, - {"Interpolation - Alternate Delimiters", [](const std::string&) { - return "|planet| => {{planet}}"; - }}, {"Interpolation - Multiple Calls", [](const std::string&) { static int calls = 0; return std::to_string(++calls); }}, @@ -20,9 +17,6 @@ std::map> specs_lambd {"Section - Expansion", [](const std::string& txt) { return txt + "{{planet}}" + txt; }}, - {"Section - Alternate Delimiters", [](const std::string& txt) { - return txt + "{{planet}} => |planet|" + txt; - }}, {"Section - Multiple Calls", [](const std::string& txt) { return "__" + txt + "__"; }},