diff options
author | Klaus Hartl <klaus.hartl@googlemail.com> | 2009-02-01 21:28:10 +0000 |
---|---|---|
committer | Klaus Hartl <klaus.hartl@googlemail.com> | 2009-02-01 21:28:10 +0000 |
commit | 844d0c18332d9317aba8531d9be3200ce2b2315d (patch) | |
tree | 3000365abd21bcb9e33e9d601e7189345352fc24 /tests | |
parent | bc967db6b20780ba592d217b8725d199684caa30 (diff) | |
download | jquery-ui-844d0c18332d9317aba8531d9be3200ce2b2315d.tar.gz jquery-ui-844d0c18332d9317aba8531d9be3200ce2b2315d.zip |
Tabs: fixed test in IE...
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/tabs/tabs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/tabs/tabs.js b/tests/unit/tabs/tabs.js index 6a4be9ed5..af65e04e4 100644 --- a/tests/unit/tabs/tabs.js +++ b/tests/unit/tabs/tabs.js @@ -267,7 +267,7 @@ module('tabs: Tickets'); el = $('#tabs2').tabs(); - equals( $('a:eq(2)', el).data('load.tabs'), 'test.html', 'should ignore fragment identifier' ); + ok(/test.html$/.test( $('a:eq(2)', el).data('load.tabs') ), 'should ignore fragment identifier'); }); |