diff options
Diffstat (limited to 'spec/ast.js')
-rw-r--r-- | spec/ast.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ast.js b/spec/ast.js index 430574e..17a982c 100644 --- a/spec/ast.js +++ b/spec/ast.js @@ -150,10 +150,10 @@ describe('ast', function() { }); }); - describe("IntegerNode", function(){ + describe("NumberNode", function(){ it('stores location info', function(){ - var integer = new handlebarsEnv.AST.IntegerNode("6", LOCATION_INFO); + var integer = new handlebarsEnv.AST.NumberNode("6", LOCATION_INFO); testLocationInfoStorage(integer); }); }); |