aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsmihica <smihica@gmail.com>2014-08-08 03:19:50 +0900
committersmihica <smihica@gmail.com>2014-08-08 03:19:50 +0900
commit251e639a6b7149cf2829ff39219a0029f4ffc4c1 (patch)
treef14f0935bdcf2b1f45c334fabc7bb0a289b86e1a
parentece1701b1e70956802c67d8b56234dc185f6550c (diff)
downloademmet-mode-251e639a6b7149cf2829ff39219a0029f4ffc4c1.tar.lz
emmet-mode-251e639a6b7149cf2829ff39219a0029f4ffc4c1.tar.xz
emmet-mode-251e639a6b7149cf2829ff39219a0029f4ffc4c1.zip
FIxed test break because of #29
-rw-r--r--src/test.el11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/test.el b/src/test.el
index cbc4390..055be6c 100644
--- a/src/test.el
+++ b/src/test.el
@@ -129,7 +129,9 @@
"a#q.x>b" ("<a id=\"q\" class=\"x\" href=\"\"><b></b></a>")
"a#q.x.y.z>b" ("<a id=\"q\" class=\"x y z\" href=\"\"><b></b></a>")
"a#q.x.y.z>b#p.l.m.n" ("<a id=\"q\" class=\"x y z\" href=\"\"><b id=\"p\" class=\"l m n\"></b></a>")
- "#q>.x" ("<div id=\"q\"><div class=\"x\"></div></div>")
+ "#q>.x" ("<div id=\"q\">"
+ " <div class=\"x\"></div>"
+ "</div>")
"a>b+c" ("<a href=\"\">"
" <b></b>"
" <c></c>"
@@ -174,9 +176,7 @@
" <span></span>"
" <em></em>"
" </p>"
- " <blockquote>"
- " foo"
- " </blockquote>"
+ " <blockquote>foo</blockquote>"
"</div>"))
(define-emmet-transform-html-test-case Multiplication
@@ -433,8 +433,7 @@
" [:b]]]"))
(define-emmet-transform-html-test-case Filter-escape
- "script src=&quot;|e" ("&lt;script src=\"&amp;quot;\"&gt;"
- "&lt;/script&gt;"))
+ "script src=&quot;|e" ("&lt;script src=\"&amp;quot;\"&gt;&lt;/script&gt;"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CSS-abbrev tests