1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-08-06 22:13:02 +02:00

go fmt boards

This commit is contained in:
Evgen Kostenko
2016-06-15 20:15:12 +03:00
parent 81b91847b3
commit 9f8d06db41
4 changed files with 7 additions and 13 deletions

View File

@ -1,6 +1,5 @@
package jira
import (
"fmt"
"io/ioutil"
@ -48,12 +47,12 @@ func TestBoardsGetFiltered(t *testing.T) {
fmt.Fprint(w, string(raw))
})
boardsListOptions := BoardListOptions {
BoardType: "scrum",
Name: "Test",
boardsListOptions := BoardListOptions{
BoardType: "scrum",
Name: "Test",
ProjectKeyOrId: "TE",
StartAt: 1,
MaxResults: 10,
StartAt: 1,
MaxResults: 10,
}
projects, _, err := testClient.Board.GetList(&boardsListOptions)
@ -64,4 +63,3 @@ func TestBoardsGetFiltered(t *testing.T) {
t.Errorf("Error given: %s", err)
}
}