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

fix: Add PriorityService to the main

This commit is contained in:
Thibaut Rousseau
2018-06-12 10:22:48 +02:00
parent b41b41a066
commit 8491cb0034
2 changed files with 5 additions and 0 deletions

View File

@ -115,6 +115,9 @@ func TestNewClient_WithServices(t *testing.T) {
if c.Version == nil {
t.Error("No VersionService provided")
}
if c.Priority == nil {
t.Error("No PriorityService provided")
}
}
func TestCheckResponse(t *testing.T) {