From f773259412bcddd492ac8a93619274eafb3b8d04 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Sat, 25 May 2013 14:38:04 -0400
Subject: [PATCH] Fix washtml test after "unsupported node type" fix

---
 tests/Framework/Washtml.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tests/Framework/Washtml.php b/tests/Framework/Washtml.php
index cd44326..526b933 100644
--- a/tests/Framework/Washtml.php
+++ b/tests/Framework/Washtml.php
@@ -47,7 +47,7 @@
         $html   = "<!--[if gte mso 10]><p>p1</p><!--><p>p2</p>";
         $washed = $washer->wash($html);
 
-        $this->assertEquals('<!-- html ignored --><!-- body ignored --><p>p2</p>', $washed, "HTML conditional comments (#1489004)");
+        $this->assertEquals('<!-- node type 8 --><!-- html ignored --><!-- body ignored --><p>p2</p>', $washed, "HTML conditional comments (#1489004)");
 
         $html   = "<!--TestCommentInvalid><p>test</p>";
         $washed = $washer->wash($html);

--
Gitblit v1.9.1