Skip to content

Commit

Permalink
really fix integration
Browse files Browse the repository at this point in the history
  • Loading branch information
silverwind committed May 1, 2023
1 parent 40fce15 commit 98f6557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/issue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func testNewIssue(t *testing.T, session *TestSession, user, repo, title, content

htmlDoc = NewHTMLParser(t, resp.Body)
val := htmlDoc.doc.Find("#issue-title").Text()
assert.contains(t, title, val)
assert.Contains(t, title, val)
val = htmlDoc.doc.Find(".comment .render-content p").First().Text()
assert.Equal(t, content, val)

Expand Down

0 comments on commit 98f6557

Please sign in to comment.