From f7c68244a0ee08fbd0bd2a9e4bc5487ea95123ba Mon Sep 17 00:00:00 2001 From: jzaefferer Date: Mon, 12 Apr 2010 16:44:37 +0200 Subject: [PATCH] Accordion unit tests: Cleaned and fixed destroy-method test, working around html rendering inconsistencies --- tests/unit/accordion/accordion.html | 6 +++--- tests/unit/accordion/accordion_methods.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/unit/accordion/accordion.html b/tests/unit/accordion/accordion.html index 3badebda9..9be9ee5c1 100644 --- a/tests/unit/accordion/accordion.html +++ b/tests/unit/accordion/accordion.html @@ -55,7 +55,7 @@
There is one obvious advantage: -
+

You've seen it coming!
@@ -65,7 +65,7 @@

Now that you've got... -
+

your bear, you have to admit it!
@@ -76,7 +76,7 @@

Rent one bear, ... -
+

get two for three beer.

diff --git a/tests/unit/accordion/accordion_methods.js b/tests/unit/accordion/accordion_methods.js index f2ed8dadf..85f037a55 100644 --- a/tests/unit/accordion/accordion_methods.js +++ b/tests/unit/accordion/accordion_methods.js @@ -31,7 +31,7 @@ test("init", function() { }); test("destroy", function() { - var beforeHtml = $("#list1").parent().html(); + var beforeHtml = $("#list1").find("div").css("font-style", "normal").end().parent().html(); var afterHtml = $("#list1").accordion().accordion("destroy").parent().html(); equal( afterHtml, beforeHtml ); }); -- 2.39.5