aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2013-03-31 12:32:33 -0400
committerMike Sherov <mike.sherov@gmail.com>2013-03-31 12:32:33 -0400
commit70717273a8aaddda27918e3497ab72ae20357867 (patch)
tree2041e8fc2507f42b8b6f1006364ec08ac1876635 /tests
parente12879a441b972fea01697580c05c4ce698578e6 (diff)
downloadjquery-ui-70717273a8aaddda27918e3497ab72ae20357867.tar.gz
jquery-ui-70717273a8aaddda27918e3497ab72ae20357867.zip
Autocomplete Tests: Fix oldIE test failures by accounting for casing differences in .html() return values.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/autocomplete/autocomplete_core.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/autocomplete/autocomplete_core.js b/tests/unit/autocomplete/autocomplete_core.js
index 6f1195910..2961cb09a 100644
--- a/tests/unit/autocomplete/autocomplete_core.js
+++ b/tests/unit/autocomplete/autocomplete_core.js
@@ -195,7 +195,7 @@ test( ".replaceWith() (#9172)", function() {
replacement = "<div>test</div>",
parent = element.parent();
element.replaceWith( replacement );
- equal( parent.html(), replacement );
+ equal( parent.html().toLowerCase(), replacement );
});
}( jQuery ) );