diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-10-22 14:57:53 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-22 15:36:11 -0400 |
commit | 6bedc0af357d9326ac39c37372b04d3bf7747454 (patch) | |
tree | 49989619f64506a50814d6c7bfa66ed3fb0a9c89 | |
parent | ac43938c8c1c908546cdb967dce11806bf2b4197 (diff) | |
download | jquery-ui-6bedc0af357d9326ac39c37372b04d3bf7747454.tar.gz jquery-ui-6bedc0af357d9326ac39c37372b04d3bf7747454.zip |
Whitespace.
-rw-r--r-- | tests/unit/widget/widget_extend.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/widget/widget_extend.js b/tests/unit/widget/widget_extend.js index ae9855929..3ad59a9cc 100644 --- a/tests/unit/widget/widget_extend.js +++ b/tests/unit/widget/widget_extend.js @@ -79,7 +79,7 @@ test( "$.widget.extend()", function() { ret = $.widget.extend( { foo: "1,2,3" }, { foo: [1, 2, 3] } ); strictEqual( typeof ret.foo, "object", "Check to make sure values equal with coersion (but not actually equal) overwrite correctly" ); - ret = $.widget.extend( { foo:"bar" }, { foo:null } ); + ret = $.widget.extend( { foo: "bar" }, { foo: null } ); strictEqual( typeof ret.foo, "object", "Make sure a null value doesn't crash with deep extend, for #1908" ); obj = { foo:null }; |