aboutsummaryrefslogtreecommitdiff
path: root/formatter/formatter_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'formatter/formatter_test.go')
-rw-r--r--formatter/formatter_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/formatter/formatter_test.go b/formatter/formatter_test.go
index fe3af4d..c5f0b83 100644
--- a/formatter/formatter_test.go
+++ b/formatter/formatter_test.go
@@ -39,10 +39,10 @@ func TestPrintAst(t *testing.T) {
>title {-
My Website
}
- meta x="y"{}
+ meta .→{} x="y"{}
}
>body {
- >div #some-id{}
+ >div #some-id {}
div key="val" .class-1 .class-2 {
p {- This is some @em{-emphatic} text }
}
@@ -53,7 +53,7 @@ func TestPrintAst(t *testing.T) {
result := `<html lang="en"><head attr><title>
My Website
</title>
-<meta x="y"></head>
+<meta class="→{}" x="y"></head>
<body><div id="some-id">
<div class="class-1 class-2" key="val"><p> This is some <em>emphatic</em> text </p></div><tags key="Some long value"></body>
</html>`