Skip to content
GitLab
Menu
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
3977ae30
Commit
3977ae30
authored
Jun 13, 2018
by
Sietse Ringers
Browse files
Remove unnecessary semicolons
parent
a4dc196d
Changes
1
Hide whitespace changes
Inline
Side-by-side
irmaclient/session_test.go
View file @
3977ae30
...
...
@@ -8,11 +8,12 @@ import (
"testing"
"time"
"math/big"
"github.com/go-errors/errors"
"github.com/privacybydesign/irmago"
"github.com/privacybydesign/irmago/internal/test"
"github.com/stretchr/testify/require"
"math/big"
)
type
TestHandler
struct
{
...
...
@@ -370,8 +371,8 @@ func keyshareSessions(t *testing.T, client *Client) {
func
TestKeyshareChangePin
(
t
*
testing
.
T
)
{
client
:=
parseStorage
(
t
)
require
.
NoError
(
t
,
client
.
keyshareChangePinWorker
(
irma
.
NewSchemeManagerIdentifier
(
"test"
),
"12345"
,
"54321"
))
;
require
.
NoError
(
t
,
client
.
keyshareChangePinWorker
(
irma
.
NewSchemeManagerIdentifier
(
"test"
),
"54321"
,
"12345"
))
;
require
.
NoError
(
t
,
client
.
keyshareChangePinWorker
(
irma
.
NewSchemeManagerIdentifier
(
"test"
),
"12345"
,
"54321"
))
require
.
NoError
(
t
,
client
.
keyshareChangePinWorker
(
irma
.
NewSchemeManagerIdentifier
(
"test"
),
"54321"
,
"12345"
))
test
.
ClearTestStorage
(
t
)
}
...
...
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