From c0d81103c25ab2d8836933f474ac0c8699259caa Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Fri, 3 Mar 2017 20:31:18 +0100 Subject: Add test for parenthesized expressions --- testing/templates/operators.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/templates') diff --git a/testing/templates/operators.html b/testing/templates/operators.html index 4b093c5..7d8ed63 100644 --- a/testing/templates/operators.html +++ b/testing/templates/operators.html @@ -22,7 +22,7 @@ {% if b ^ c == a + c -%} bxor {%- endif -%} -{% if b | c == a + c -%} +{% if (b | c) == a + c -%} bor {%- endif -%} {% if a == b && a + b == c -%} -- cgit