1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-06-14 23:45:03 +02:00

go doc and go lint

This commit is contained in:
Andy Grunwald
2016-07-17 11:41:50 +02:00
parent a2df25c45a
commit f1a11a0302
4 changed files with 10 additions and 8 deletions

View File

@ -452,7 +452,7 @@ func TestIssueService_DoTransition(t *testing.T) {
var payload CreateTransitionPayload
err := decoder.Decode(&payload)
if err != nil {
t.Error("Got error: %v", err)
t.Errorf("Got error: %v", err)
}
if payload.Transition.ID != transitionID {
@ -462,6 +462,6 @@ func TestIssueService_DoTransition(t *testing.T) {
_, err := testClient.Issue.DoTransition("123", transitionID)
if err != nil {
t.Error("Got error: %v", err)
t.Errorf("Got error: %v", err)
}
}