Skip to content

Commit 30b6557

Browse files
committedAug 19, 2020
fixed broken test
1 parent 472f4fd commit 30b6557

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎parser/parser_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ You will love it.`)
168168
func TestExtractCommentMetadata(t *testing.T) {
169169
is := is.New(t)
170170

171-
metadata, comment, err := extractCommentMetadata(`
171+
p := &Parser{}
172+
metadata, comment, err := p.extractCommentMetadata(`
172173
This is a comment
173174
example: "With an example"
174175
required: true

0 commit comments

Comments
 (0)
Please sign in to comment.