1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-03-21 21:07:03 +02:00

cosmetic fix in boards imports, tests in projects

This commit is contained in:
Evgen Kostenko 2016-06-16 12:25:47 +03:00
parent c66a9e0e77
commit e3b9aad702
2 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,6 @@
package jira
import (
//"fmt"
"fmt"
"net/http"
)

View File

@ -68,7 +68,7 @@ func TestProjectGet_NoProject(t *testing.T) {
projects, resp, err := testClient.Project.Get("99999999")
if projects != nil {
t.Errorf("Expected nil. Got %s", err)
t.Errorf("Expected nil. Got %+v", projects)
}
if resp.Status == "404" {