]> source.dussan.org Git - jquery.git/commitdiff
Less deep and more strict.
authorRick Waldron <waldron.rick@gmail.com>
Thu, 25 Oct 2012 12:46:53 +0000 (08:46 -0400)
committerRick Waldron <waldron.rick@gmail.com>
Thu, 25 Oct 2012 14:32:30 +0000 (10:32 -0400)
test/unit/data.js

index fec1d786582280b836c63db3415f49a90177332d..3bec09ef8ef3c77d6dedcb67c365111bd918fde5 100644 (file)
@@ -681,8 +681,8 @@ test( "jQuery.fn.removeData supports interoperable removal of hyphenated propert
        plain.data( "a-a", 1 );
        plain.data( "b-b", 2 );
 
-       deepEqual( plain.data( "a-a" ), 1, "plain.data('a-a') returns value that matches the manually set value (plain)" );
-       deepEqual( plain.data( "b-b" ), 2, "plain.data('b-b') returns value that matches the manually set value (plain)" );
+       strictEqual( plain.data( "a-a" ), 1, "plain.data('a-a') returns value that matches the manually set value (plain)" );
+       strictEqual( plain.data( "b-b" ), 2, "plain.data('b-b') returns value that matches the manually set value (plain)" );
 
        plain.removeData([ "a-a", "b-b" ]);
        ok( jQuery.isEmptyObject( plain.data() ), "After removal by array of hyphenated keys, plain.data() returns an object with no properties (plain)" );