From 8ef039b9dbff905431c9428cb3729e05f29ce2a7 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 29 May 2012 10:17:55 -0400 Subject: [PATCH] Update unit test with `_.templateSettings.variable` change. Former-commit-id: e29718c70b0b0bcfeaf54909a32366d12663984d --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index da7263a8b..e98c8ab09 100644 --- a/test/test.js +++ b/test/test.js @@ -402,7 +402,7 @@ (function() { test('supports recursive calls', function() { - var compiled = _.template('<%= a %><% a = _.template(c, object) %><%= a %>'), + var compiled = _.template('<%= a %><% a = _.template(c, obj) %><%= a %>'), data = { 'a': 'A', 'b': 'B', 'c': '<%= b %>' }; equal(compiled(data), 'AB');