summaryrefslogtreecommitdiff
path: root/html/html_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'html/html_test.go')
-rw-r--r--html/html_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/html_test.go b/html/html_test.go
index f2f8e6f..f614b4d 100644
--- a/html/html_test.go
+++ b/html/html_test.go
@@ -7,7 +7,7 @@ import (
)
func TestParse(t *testing.T) {
- result, _, err := Parse(`<body>hello <p color="blue">world</p></body>`)
+ result, err := Parse(`<body>hello <p color="blue">world</p></body>`)
require.NoError(t, err)
require.Equal(t, Tag{Name: "body", Attributes: map[string]string{}, Body: []interface{}{
"hello ",