aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2011-08-03 14:02:10 -0400
committertimmywil <timmywillisn@gmail.com>2011-08-03 14:02:10 -0400
commit905e8920f9b2a895ed76693a74f34c0297cbcbfb (patch)
tree0dc2690fb0efa05deb56f73b5aaa92a6bef22dec /test/unit
parent27291ff06ddb655f90a8d1eada71f7ac61499b12 (diff)
downloadjquery-905e8920f9b2a895ed76693a74f34c0297cbcbfb.tar.gz
jquery-905e8920f9b2a895ed76693a74f34c0297cbcbfb.zip
Landing pull request 453. Typo correction strictEquals=>strictEqual. Fixes #9964.
More Details: - https://github.com/jquery/jquery/pull/453 - http://bugs.jquery.com/ticket/9964
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/support.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/support.js b/test/unit/support.js
index 36dc3553e..b87e0919f 100644
--- a/test/unit/support.js
+++ b/test/unit/support.js
@@ -42,13 +42,13 @@ supportIFrameTest( "body background is not lost if set prior to loading jQuery (
for ( i in jQuery.support ) {
if ( jQuery.support[ i ] !== support[ i ] ) {
passed = false;
- strictEquals( jQuery.support[ i ], support[ i ], "Support property " + i + " is different" );
+ strictEqual( jQuery.support[ i ], support[ i ], "Support property " + i + " is different" );
}
}
for ( i in support ) {
if ( !( i in jQuery.support ) ) {
ok = false;
- strictEquals( src[ i ], dest[ i ], "Unexpected property: " + i );
+ strictEqual( src[ i ], dest[ i ], "Unexpected property: " + i );
}
}
ok( passed, "Same support properties" );