From: Robert Katic Date: Thu, 12 Nov 2009 15:24:19 +0000 (+0800) Subject: Corrected some minor errors made by me (rkatic) in last commits. X-Git-Url: http://git.asbjorn.it/?p=jquery.git;a=commitdiff_plain;h=ee9192d103b3e3b5479a824caa9f6938598ebd30 Corrected some minor errors made by me (rkatic) in last commits. --- diff --git a/test/unit/core.js b/test/unit/core.js index 058e11f..7a2c4d6 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -517,7 +517,7 @@ test("jQuery.merge()", function() { }); test("jQuery.extend(Object, Object)", function() { - expect(24); + expect(25); var settings = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" }, options = { xnumber2: 1, xstring2: "x", xxx: "newstring" }, @@ -557,13 +557,13 @@ test("jQuery.extend(Object, Object)", function() { var optionsWithCustomObject = { foo: { date: new customObject } }; empty = {}; jQuery.extend(true, empty, optionsWithCustomObject); - ok( empty.foo && empty.foo.date && empty.foo.date === customObject, "Custom objects copy correctly (no methods)" ); + ok( empty.foo && empty.foo.date === customObject, "Custom objects copy correctly (no methods)" ); // Makes the class a little more realistic myKlass.prototype = { someMethod: function(){} }; empty = {}; jQuery.extend(true, empty, optionsWithCustomObject); - ok( empty.foo && empty.foo.date && empty.foo.date === customObject, "Custom objects copy correctly" ); + ok( empty.foo && empty.foo.date === customObject, "Custom objects copy correctly" ); var ret = jQuery.extend(true, { foo: 4 }, { foo: new Number(5) } ); ok( ret.foo == 5, "Wrapped numbers copy correctly" );