From 1c15e457641402d77aa66b8614c02fa08acbf165 Mon Sep 17 00:00:00 2001 From: spmassot Date: Wed, 17 Oct 2018 16:28:08 -0400 Subject: [PATCH] Puts test back how it was... --- issue_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/issue_test.go b/issue_test.go index c2286e0..4349c74 100644 --- a/issue_test.go +++ b/issue_test.go @@ -96,12 +96,12 @@ func TestIssueService_Update(t *testing.T) { }, } issue, _, err := testClient.Issue.Update(i) - if err != nil { - t.Errorf("Error given: %s", err) - } if issue == nil { t.Error("Expected issue. Issue is nil") } + if err != nil { + t.Errorf("Error given: %s", err) + } } func TestIssueService_UpdateIssue(t *testing.T) {