2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-17 19:21:23 +03:00

QUnit.equals() is deprecated; use QUnit.equal() instead

This commit is contained in:
Chris Rebert
2013-10-25 14:14:30 -07:00
parent f2f70a4a74
commit 7b24f3c47c
4 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ $(function () {
test("should add data attribute for referencing original title", function () {
var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>').tooltip()
equals(tooltip.attr('data-original-title'), 'Another tooltip', 'original title preserved in data attribute')
equal(tooltip.attr('data-original-title'), 'Another tooltip', 'original title preserved in data attribute')
})
test("should place tooltips relative to placement option", function () {