aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2017-02-17 17:15:45 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2017-02-17 17:15:45 +0100
commit7a6e79187ee1a86d0c71f160ac00fa9f5a290134 (patch)
tree92d7750220b50b67b8ca8c4fc2deaeee014a53a0 /testing
parent825610cd64237c877f26cc882cac20704c80e046 (diff)
downloadaskama-7a6e79187ee1a86d0c71f160ac00fa9f5a290134.tar.gz
askama-7a6e79187ee1a86d0c71f160ac00fa9f5a290134.tar.bz2
askama-7a6e79187ee1a86d0c71f160ac00fa9f5a290134.zip
Add support for integer literals
Diffstat (limited to 'testing')
-rw-r--r--testing/templates/operators.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/templates/operators.html b/testing/templates/operators.html
index 1488b9a..4b093c5 100644
--- a/testing/templates/operators.html
+++ b/testing/templates/operators.html
@@ -28,6 +28,6 @@
{% if a == b && a + b == c -%}
and
{%- endif -%}
-{% if a == c || a == b -%}
+{% if a == c || a == 1 -%}
or
{%- endif -%}