summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Fowler <adamfowler71@gmail.com>2021-03-18 10:48:20 +0000
committerAdam Fowler <adamfowler71@gmail.com>2021-03-18 10:48:20 +0000
commitc20a59a2af63156113c23d8287e4fcdbb4e5a493 (patch)
tree8f2093204b5ac117e218e59ba656dc4126cbb345
parent989a21a48ba62e8ee54bda6a692f678b8619467a (diff)
downloadmustache-spec-c20a59a2af63156113c23d8287e4fcdbb4e5a493.tar.gz
Fix Variable test in sections.yml
-rw-r--r--specs/sections.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/specs/sections.yml b/specs/sections.yml
index 2d1e982..40021c0 100644
--- a/specs/sections.yml
+++ b/specs/sections.yml
@@ -65,7 +65,7 @@ tests:
accessible as {{.}} or through the parent context. This gives
a simple way to display content conditionally if a variable exists.
data: { foo: "bar" }
- template: '"{{#foo}} {{.}} is {{foo}} {{/foo}}"'
+ template: '"{{#foo}}{{.}} is {{foo}}{{/foo}}"'
expected: '"bar is bar"'
- name: List Contexts