Skip to content

Commit

Permalink
Merge pull request #356 from manuelbcd/master
Browse files Browse the repository at this point in the history
Typo fix in issue_test.go (minor fix)
  • Loading branch information
benjivesterby authored Mar 2, 2021
2 parents 1a84689 + f30f8c9 commit 5168cea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions issue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand Down

0 comments on commit 5168cea

Please sign in to comment.