summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul J. Davis <paul.joseph.davis@gmail.com>2011-02-23 04:46:49 +0800
committerPieter van de Bruggen <pvande@gmail.com>2011-02-23 05:04:43 +0800
commitc0e30e724a429e6ce76d79fa89643c5c760acb21 (patch)
tree66217b959a789dae26d7d7020c32939784edd838
parentfc53f5e7dccd0eeee9b9b7c9147b9773d5dc0889 (diff)
downloadmustache-spec-c0e30e724a429e6ce76d79fa89643c5c760acb21.tar.gz
Fixed capitalization in the lambda test Section.
-rw-r--r--specs/~lambdas.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/specs/~lambdas.yml b/specs/~lambdas.yml
index 7f37951..5b50ff0 100644
--- a/specs/~lambdas.yml
+++ b/specs/~lambdas.yml
@@ -72,7 +72,7 @@ tests:
perl: 'sub { $_[0] eq "{{x}}" ? "yes" : "no" }'
js: 'function(txt) { return (txt == "{{x}}" ? "yes" : "no") }'
php: 'return ($text == "{{x}}") ? "yes" : "no";'
- python: 'lambda text: text == "{{x}}" and "Yes" or "No"'
+ python: 'lambda text: text == "{{x}}" and "yes" or "no"'
template: "<{{#lambda}}{{x}}{{/lambda}}>"
expected: "<yes>"