diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-06-25 14:51:51 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-06-25 14:51:51 -0400 |
commit | abbf6a79a91cdc64005fcbb28d98ad71a27b61c0 (patch) | |
tree | 6ba45ae79306dcf9e1755cbc3c55a03c0ff50f59 /tests/unit/core | |
parent | 0e550f16bbaf28e991f6236f367c22727bef2bf3 (diff) | |
download | jquery-ui-abbf6a79a91cdc64005fcbb28d98ad71a27b61c0.tar.gz jquery-ui-abbf6a79a91cdc64005fcbb28d98ad71a27b61c0.zip |
Tests: Update support comments.
Diffstat (limited to 'tests/unit/core')
-rw-r--r-- | tests/unit/core/core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/core/core.js b/tests/unit/core/core.js index b3020179d..41bc2ab5b 100644 --- a/tests/unit/core/core.js +++ b/tests/unit/core/core.js @@ -158,7 +158,7 @@ test( "uniqueId / removeUniqueId", function() { // support: jQuery <1.6.2 // support: IE <8 - // We should use equal( id, undefined ) when dropping jQuery 1.6.1 support (or IE6/7) + // We should use strictEqual( id, undefined ) when dropping jQuery 1.6.1 support (or IE6/7) ok( !el.attr( "id" ), "element has no initial id" ); el.uniqueId(); ok( /ui-id-\d+$/.test( el.attr( "id" ) ), "element has generated id" ); |