Skip to content

Commit 012942d

Browse files
committed
Update html-templates.md: fix test
Fixes a test implementation
1 parent 2f2b656 commit 012942d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

html-templates.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,7 @@ Now we have a very basic version working, we can now iterate on the test to expa
161161
}
162162

163163
got := buf.String()
164-
want := `<h1>hello world</h1>
165-
<p>This is a description</p>
166-
Tags: <ul><li>go</li><li>tdd</li></ul>`
164+
want := `<h1>hello world</h1><p>This is a description</p>Tags: <ul><li>go</li><li>tdd</li></ul>`
167165

168166
if got != want {
169167
t.Errorf("got '%s' want '%s'", got, want)

0 commit comments

Comments
 (0)