Skip to content

Commit 3d25b37

Browse files
committed
fix contains
1 parent 8bf9939 commit 3d25b37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integrations/pull_status_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,6 @@ func TestPullCreate_EmptyChangesWithCommits(t *testing.T) {
115115
doc := NewHTMLParser(t, resp.Body)
116116

117117
text := strings.TrimSpace(doc.doc.Find(".merge-section").Text())
118-
assert.Contains(t, "This pull request can be merged automatically.", text)
118+
assert.Contains(t, text, "This pull request can be merged automatically.")
119119
})
120120
}

0 commit comments

Comments
 (0)