1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-03-17 20:47:57 +02:00

Typo fix in issue_test.go

This commit is contained in:
manuelbcd 2021-03-02 19:12:34 +00:00
parent 1a84689d0c
commit f30f8c9f7c

View File

@ -640,10 +640,10 @@ func TestIssueService_Search(t *testing.T) {
t.Errorf("StartAt should populate with 1, %v given", resp.StartAt)
}
if resp.MaxResults != 40 {
t.Errorf("StartAt should populate with 40, %v given", resp.MaxResults)
t.Errorf("MaxResults should populate with 40, %v given", resp.MaxResults)
}
if resp.Total != 6 {
t.Errorf("StartAt should populate with 6, %v given", resp.Total)
t.Errorf("Total should populate with 6, %v given", resp.Total)
}
}