1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-08-06 22:13:02 +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

@ -22,7 +22,7 @@ func TestSprintService_MoveIssuesToSprint(t *testing.T) {
var payload IssuesWrapper
err := decoder.Decode(&payload)
if err != nil {
t.Error("Got error: %v", err)
t.Errorf("Got error: %v", err)
}
if payload.Issues[0] != issuesToMove[0] {
@ -32,6 +32,6 @@ func TestSprintService_MoveIssuesToSprint(t *testing.T) {
_, err := testClient.Sprint.MoveIssuesToSprint(123, issuesToMove)
if err != nil {
t.Error("Got error: %v", err)
t.Errorf("Got error: %v", err)
}
}