From ee9192d103b3e3b5479a824caa9f6938598ebd30 Mon Sep 17 00:00:00 2001 From: Robert Katic Date: Thu, 12 Nov 2009 23:24:19 +0800 Subject: [PATCH] Corrected some minor errors made by me (rkatic) in last commits. --- test/unit/core.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" ); -- 1.7.10.4