mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 21:16:26 +01:00 
			
		
		
		
	Merge pull request #1874 from ethantkoenig/typo/issue_test
Fix misspelled variables
This commit is contained in:
		
						commit
						ed31dff5ab
					
				@ -61,26 +61,23 @@ func TestGetIssuesByIDs(t *testing.T) {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func TestGetParticipantsByIssueID(t *testing.T) {
 | 
					func TestGetParticipantsByIssueID(t *testing.T) {
 | 
				
			||||||
 | 
					 | 
				
			||||||
	assert.NoError(t, PrepareTestDatabase())
 | 
						assert.NoError(t, PrepareTestDatabase())
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	checkPartecipants := func(issueID int64, userIDs []int) {
 | 
						checkParticipants := func(issueID int64, userIDs []int) {
 | 
				
			||||||
		partecipants, err := GetParticipantsByIssueID(issueID)
 | 
							participants, err := GetParticipantsByIssueID(issueID)
 | 
				
			||||||
		if assert.NoError(t, err) {
 | 
							if assert.NoError(t, err) {
 | 
				
			||||||
			partecipantsIDs := make([]int, len(partecipants))
 | 
								participantsIDs := make([]int, len(participants))
 | 
				
			||||||
			for i, u := range partecipants {
 | 
								for i, u := range participants {
 | 
				
			||||||
				partecipantsIDs[i] = int(u.ID)
 | 
									participantsIDs[i] = int(u.ID)
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			sort.Ints(partecipantsIDs)
 | 
								sort.Ints(participantsIDs)
 | 
				
			||||||
			sort.Ints(userIDs)
 | 
								sort.Ints(userIDs)
 | 
				
			||||||
			assert.Equal(t, userIDs, partecipantsIDs)
 | 
								assert.Equal(t, userIDs, participantsIDs)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// User 1 is issue1 poster (see fixtures/issue.yml)
 | 
						// User 1 is issue1 poster (see fixtures/issue.yml)
 | 
				
			||||||
	// User 2 only labeled issue1 (see fixtures/comment.yml)
 | 
						// User 2 only labeled issue1 (see fixtures/comment.yml)
 | 
				
			||||||
	// Users 3 and 5 made actual comments (see fixtures/comment.yml)
 | 
						// Users 3 and 5 made actual comments (see fixtures/comment.yml)
 | 
				
			||||||
	checkPartecipants(1, []int{3, 5})
 | 
						checkParticipants(1, []int{3, 5})
 | 
				
			||||||
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user