diff options
Diffstat (limited to 'spec/qunit_spec.js')
-rw-r--r-- | spec/qunit_spec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/qunit_spec.js b/spec/qunit_spec.js index 933c8ed..6a093f3 100644 --- a/spec/qunit_spec.js +++ b/spec/qunit_spec.js @@ -706,7 +706,7 @@ test("if a context is not found, helperMissing is used", function() { shouldThrow(function() { var template = CompilerContext.compile("{{hello}} {{link_to world}}"); template({}); - }, [Error, "Could not find property 'link_to'"], "Should throw exception"); + }, [Error, "Missing helper: 'link_to'"], "Should throw exception"); }); test("if a context is not found, custom helperMissing is used", function() { |