From: Scott González Date: Mon, 22 Oct 2012 18:57:53 +0000 (-0400) Subject: Whitespace. X-Git-Tag: 1.9.1~25 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6bedc0af357d9326ac39c37372b04d3bf7747454;p=jquery-ui.git Whitespace. --- 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 };