Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
ale
logviewer
Commits
cd36e172
Commit
cd36e172
authored
Apr 21, 2019
by
ale
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix format string in test
parent
f20798d8
Pipeline
#2750
passed with stages
in 1 minute and 21 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
service_test.go
service_test.go
+1
-1
No files found.
service_test.go
View file @
cd36e172
...
...
@@ -29,7 +29,7 @@ func TestService_Query(t *testing.T) {
defer
resp
.
Body
.
Close
()
if
resp
.
StatusCode
!=
200
{
t
.
Fatalf
(
"got status code %
s
, expected 200"
,
resp
.
StatusCode
)
t
.
Fatalf
(
"got status code %
d
, expected 200"
,
resp
.
StatusCode
)
}
data
,
_
:=
ioutil
.
ReadAll
(
resp
.
Body
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment