Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Łukasz Nowak
caddy
Commits
b199825c
Commit
b199825c
authored
9 years ago
by
Alexander Morozov
Browse files
Options
Download
Email Patches
Plain Diff
Fix formatting directives in tests
Signed-off-by:
Alexander Morozov
<
lk4d4@docker.com
>
parent
94becb89
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
config/setup/markdown_test.go
config/setup/markdown_test.go
+1
-1
middleware/recorder_test.go
middleware/recorder_test.go
+2
-2
No files found.
config/setup/markdown_test.go
View file @
b199825c
...
...
@@ -111,7 +111,7 @@ func TestMarkdownStaticGen(t *testing.T) {
fp
:=
filepath
.
Join
(
c
.
Root
,
markdown
.
DefaultStaticDir
)
if
err
=
os
.
RemoveAll
(
fp
);
err
!=
nil
{
t
.
Errorf
(
"Error while removing the generated static files: "
,
err
)
t
.
Errorf
(
"Error while removing the generated static files:
%v
"
,
err
)
}
}
...
...
This diff is collapsed.
Click to expand it.
middleware/recorder_test.go
View file @
b199825c
...
...
@@ -13,7 +13,7 @@ func TestNewResponseRecorder(t *testing.T) {
t
.
Fatalf
(
"Expected Response writer in the Recording to be same as the one sent
\n
"
)
}
if
recordRequest
.
status
!=
http
.
StatusOK
{
t
.
Fatalf
(
"Expected recorded status to be http.StatusOK (%d) , but found %d
\n
"
,
recordRequest
.
status
)
t
.
Fatalf
(
"Expected recorded status to be http.StatusOK (%d) , but found %d
\n
"
,
http
.
StatusOK
,
recordRequest
.
status
)
}
}
func
TestWriteHeader
(
t
*
testing
.
T
)
{
...
...
@@ -35,6 +35,6 @@ func TestWrite(t *testing.T) {
t
.
Fatalf
(
"Expected the bytes written counter to be %d, but instead found %d
\n
"
,
len
(
buf
),
recordRequest
.
size
)
}
if
w
.
Body
.
String
()
!=
responseTestString
{
t
.
Fatalf
(
"Expected Response Body to be %s , but found %s
\n
"
,
w
.
Body
.
String
())
t
.
Fatalf
(
"Expected Response Body to be %s , but found %s
\n
"
,
responseTestString
,
w
.
Body
.
String
())
}
}
This diff is collapsed.
Click to expand it.
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