diff options
Diffstat (limited to 'test/unit/core.js')
-rw-r--r-- | test/unit/core.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/unit/core.js b/test/unit/core.js index 8c0f8640e..b00db8c33 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -1196,7 +1196,6 @@ QUnit.test( "jQuery.extend(Object, Object)", function( assert ) { ret = jQuery.extend( true, { "foo": 4 }, { "foo": new MyNumber( 5 ) } ); assert.ok( parseInt( ret.foo, 10 ) === 5, "Wrapped numbers copy correctly" ); - nullUndef; nullUndef = jQuery.extend( {}, options, { "xnumber2": null } ); assert.ok( nullUndef[ "xnumber2" ] === null, "Check to make sure null values are copied" ); |