Skip to content

Commit ad94a94

Browse files
guillep2kzeripath
authored andcommitted
Fix activity count in TestRepoActivity (#9959)
* Fix activity count * Fix comment
1 parent f6067a8 commit ad94a94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integrations/repo_activity_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ func TestRepoActivity(t *testing.T) {
5656
list = htmlDoc.doc.Find("#merged-pull-requests").Next().Find("p.desc")
5757
assert.Len(t, list.Nodes, 1)
5858

59-
// Should be 3 merged proposed pull requests
59+
// Should be 2 proposed pull requests
6060
list = htmlDoc.doc.Find("#proposed-pull-requests").Next().Find("p.desc")
61-
assert.Len(t, list.Nodes, 3)
61+
assert.Len(t, list.Nodes, 2)
6262

6363
// Should be 3 new issues
6464
list = htmlDoc.doc.Find("#new-issues").Next().Find("p.desc")

0 commit comments

Comments
 (0)