diff options
author | Ethan Koenig <ethantkoenig@gmail.com> | 2017-06-04 13:39:08 -0400 |
---|---|---|
committer | Ethan Koenig <ethantkoenig@gmail.com> | 2017-06-04 13:39:08 -0400 |
commit | 1a09afc729a316184ac86177fe5beb2a458f332e (patch) | |
tree | 9c4d7fec3a8eff37e8b1099bdb64ca4d50bfdbbb /models | |
parent | e7ae13deefc3f3936793eded8551d314850f4c19 (diff) | |
download | gitea-1a09afc729a316184ac86177fe5beb2a458f332e.tar.gz gitea-1a09afc729a316184ac86177fe5beb2a458f332e.zip |
Fix misspelled variables
Diffstat (limited to 'models')
-rw-r--r-- | models/issue_test.go | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/models/issue_test.go b/models/issue_test.go index 71ce92ea7e..e335014ca5 100644 --- a/models/issue_test.go +++ b/models/issue_test.go @@ -61,26 +61,23 @@ func TestGetIssuesByIDs(t *testing.T) { } func TestGetParticipantsByIssueID(t *testing.T) { - assert.NoError(t, PrepareTestDatabase()) - checkPartecipants := func(issueID int64, userIDs []int) { - partecipants, err := GetParticipantsByIssueID(issueID) + checkParticipants := func(issueID int64, userIDs []int) { + participants, err := GetParticipantsByIssueID(issueID) if assert.NoError(t, err) { - partecipantsIDs := make([]int, len(partecipants)) - for i, u := range partecipants { - partecipantsIDs[i] = int(u.ID) + participantsIDs := make([]int, len(participants)) + for i, u := range participants { + participantsIDs[i] = int(u.ID) } - sort.Ints(partecipantsIDs) + sort.Ints(participantsIDs) sort.Ints(userIDs) - assert.Equal(t, userIDs, partecipantsIDs) + assert.Equal(t, userIDs, participantsIDs) } - } // User 1 is issue1 poster (see fixtures/issue.yml) // User 2 only labeled issue1 (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}) } |