Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
IRMA
Github mirrors
irmago
Commits
7eccd8ef
Commit
7eccd8ef
authored
Jul 24, 2017
by
Sietse Ringers
Browse files
Fix erroneous Println in test
parent
d492d12a
Changes
1
Hide whitespace changes
Inline
Side-by-side
irmago_test.go
View file @
7eccd8ef
...
...
@@ -17,12 +17,12 @@ func TestMain(m *testing.M) {
Manager
=
newCredentialManager
()
err
:=
os
.
RemoveAll
(
"testdata/storage/test"
)
if
err
!=
nil
{
fmt
.
Errorf
(
"Could not delete test storage"
)
fmt
.
Println
(
"Could not delete test storage"
)
os
.
Exit
(
1
)
}
err
=
os
.
Mkdir
(
"testdata/storage/test"
,
0755
)
if
err
!=
nil
{
fmt
.
Errorf
(
"Could not create test storage"
)
fmt
.
Println
(
"Could not create test storage"
)
os
.
Exit
(
1
)
}
...
...
@@ -30,7 +30,7 @@ func TestMain(m *testing.M) {
err
=
os
.
RemoveAll
(
"testdata/storage/test"
)
if
err
!=
nil
{
fmt
.
Errorf
(
"Could not delete test storage"
)
fmt
.
Println
(
"Could not delete test storage"
)
os
.
Exit
(
1
)
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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