aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/widget
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/widget')
-rw-r--r--tests/unit/widget/widget_core.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/widget/widget_core.js b/tests/unit/widget/widget_core.js
index f0afaa956..5ed0717da 100644
--- a/tests/unit/widget/widget_core.js
+++ b/tests/unit/widget/widget_core.js
@@ -412,7 +412,7 @@ test( "_bind to element (default)", function() {
self = this;
this._bind({
keyup: this.keyup,
- keydown: this.keydown
+ keydown: "keydown"
});
},
keyup: function( event ) {
@@ -452,7 +452,7 @@ test( "_bind to descendent", function() {
self = this;
this._bind( this.element.find( "strong" ), {
keyup: this.keyup,
- keydown: this.keydown
+ keydown: "keydown"
});
},
keyup: function( event ) {