diff --git a/test/CompilerSpec.js b/test/CompilerSpec.js index ff576581..7e636ec1 100644 --- a/test/CompilerSpec.js +++ b/test/CompilerSpec.js @@ -40,7 +40,7 @@ describe('compiler', function(){ compiler.compile('
A
'); }).toThrow("Cannot compile multiple element roots: " + ie("
A
")); function ie(text) { - return msie ? uppercase(text) : text; + return msie && msie < 9 ? uppercase(text) : text; } });