aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2013-03-31 12:32:33 -0400
committerScott González <scott.gonzalez@gmail.com>2013-04-17 15:07:19 -0400
commit771664153ef9056be9234b1e96d8771f782953e9 (patch)
treebcfb6aaeab4d39daf938b38b13e051e103a98d46
parentd9391c75902adab7e39f1f4e4634fbb7c10634d8 (diff)
downloadjquery-ui-771664153ef9056be9234b1e96d8771f782953e9.tar.gz
jquery-ui-771664153ef9056be9234b1e96d8771f782953e9.zip
Autocomplete Tests: Fix oldIE test failures by accounting for casing differences in .html() return values.(cherry picked from commit 70717273a8aaddda27918e3497ab72ae20357867)
-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 8a01bee8d..c828ffe22 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 ) );