]> source.dussan.org Git - jquery-ui.git/commitdiff
Whitespace.
authorScott González <scott.gonzalez@gmail.com>
Mon, 22 Oct 2012 18:57:53 +0000 (14:57 -0400)
committerScott González <scott.gonzalez@gmail.com>
Mon, 22 Oct 2012 19:36:11 +0000 (15:36 -0400)
tests/unit/widget/widget_extend.js

index ae98559297b032a4764eb7923237eb703c69e411..3ad59a9ccbd7696e02e5c7c7564ff927696b7b8d 100644 (file)
@@ -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 };