summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2015-04-14 22:57:15 -0500
committerkpdecker <kpdecker@gmail.com>2015-04-14 22:57:15 -0500
commit2a02261a5bc78f246c63dd8d467a12f2c1f63734 (patch)
tree35df26fd8840422c135832665bc38f7278fa6f2a
parenta009a97a2e88c86984137ece113b454246114377 (diff)
downloadhandlebars.js-2a02261a5bc78f246c63dd8d467a12f2c1f63734.zip
handlebars.js-2a02261a5bc78f246c63dd8d467a12f2c1f63734.tar.gz
handlebars.js-2a02261a5bc78f246c63dd8d467a12f2c1f63734.tar.bz2
Fix IE test freakout
-rw-r--r--spec/basic.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/basic.js b/spec/basic.js
index 37aa8cf..323a103 100644
--- a/spec/basic.js
+++ b/spec/basic.js
@@ -76,14 +76,14 @@ describe("basic context", function() {
'true true object');
shouldCompileTo('{{undefined}}',
{
- undefined: function() {
+ 'undefined': function() {
return 'undefined!';
}
},
'undefined!');
shouldCompileTo('{{null}}',
{
- null: function() {
+ 'null': function() {
return 'null!';
}
},