Browse Source

Fix activity count in TestRepoActivity (#9959)

* Fix activity count

* Fix comment
for-closed-social
guillep2k 4 years ago
committed by zeripath
parent
commit
ad94a94114
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      integrations/repo_activity_test.go

+ 2
- 2
integrations/repo_activity_test.go View File

@ -56,9 +56,9 @@ func TestRepoActivity(t *testing.T) {
list = htmlDoc.doc.Find("#merged-pull-requests").Next().Find("p.desc")
assert.Len(t, list.Nodes, 1)
// Should be 3 merged proposed pull requests
// Should be 2 proposed pull requests
list = htmlDoc.doc.Find("#proposed-pull-requests").Next().Find("p.desc")
assert.Len(t, list.Nodes, 3)
assert.Len(t, list.Nodes, 2)
// Should be 3 new issues
list = htmlDoc.doc.Find("#new-issues").Next().Find("p.desc")

Loading…
Cancel
Save