aboutsummaryrefslogtreecommitdiffstats
path: root/test/WidgetsTest.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/WidgetsTest.js')
-rw-r--r--test/WidgetsTest.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/WidgetsTest.js b/test/WidgetsTest.js
index fe20e664..c0a2d082 100644
--- a/test/WidgetsTest.js
+++ b/test/WidgetsTest.js
@@ -223,10 +223,10 @@ BindAttrUpdaterTest.prototype.testShouldLoadBlankImageWhenBindingIsUndefined = f
var scope = new Scope();
scope.set('imageUrl', undefined);
- scope.set('config.server', 'http://server');
+ scope.set('$config.blankImage', 'http://server/blank.gif');
controller.updateView(scope);
- assertEquals("http://server/images/blank.gif", view.attr('src'));
+ assertEquals("http://server/blank.gif", view.attr('src'));
};
RepeaterUpdaterTest.prototype.testShouldNotDieWhenRepeatExpressionIsNull = function() {