Skip to content

Commit 6bedc0a

Browse files
committed
Whitespace.
1 parent ac43938 commit 6bedc0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/widget/widget_extend.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ test( "$.widget.extend()", function() {
7979
ret = $.widget.extend( { foo: "1,2,3" }, { foo: [1, 2, 3] } );
8080
strictEqual( typeof ret.foo, "object", "Check to make sure values equal with coersion (but not actually equal) overwrite correctly" );
8181

82-
ret = $.widget.extend( { foo:"bar" }, { foo:null } );
82+
ret = $.widget.extend( { foo: "bar" }, { foo: null } );
8383
strictEqual( typeof ret.foo, "object", "Make sure a null value doesn't crash with deep extend, for #1908" );
8484

8585
obj = { foo:null };

0 commit comments

Comments
 (0)