mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Fix activity count in TestRepoActivity (#9959)
* Fix activity count * Fix comment
This commit is contained in:
		
					parent
					
						
							
								f6067a8465
							
						
					
				
			
			
				commit
				
					
						ad94a94114
					
				
			
		
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -56,9 +56,9 @@ func TestRepoActivity(t *testing.T) {
 | 
				
			||||||
		list = htmlDoc.doc.Find("#merged-pull-requests").Next().Find("p.desc")
 | 
							list = htmlDoc.doc.Find("#merged-pull-requests").Next().Find("p.desc")
 | 
				
			||||||
		assert.Len(t, list.Nodes, 1)
 | 
							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")
 | 
							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
 | 
							// Should be 3 new issues
 | 
				
			||||||
		list = htmlDoc.doc.Find("#new-issues").Next().Find("p.desc")
 | 
							list = htmlDoc.doc.Find("#new-issues").Next().Find("p.desc")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue