8000 Fix 'groupby' filter tests · jinja2cpp/Jinja2Cpp@3940047 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3940047

Browse files
committed
Fix 'groupby' filter tests
1 parent 093c7b6 commit 3940047

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/filters_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ TEST_P(FilterGroupByTest, Test)
7272
{% for grouper, list in )" + testParam.tpl + R"(
7373
%}grouper: {{grouper | pprint }}
7474
{% for i in list %}
75-
{{i|pprint}}
75+
{'intValue': {{i.intValue}}, 'dblValue': {{i.dblValue}}, 'boolValue': {{i.boolValue}}, 'strValue': '{{i.strValue}}', 'wstrValue': '<wchar_string>'}
7676
{% endfor %}
7777
{% endfor %})";
7878

0 commit comments

Comments
 (0)
0