File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
webauthn-server-attestation/src/test/scala/com/yubico/fido/metadata
webauthn-server-core/src/test/scala/com/yubico/webauthn/data Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ class JsonIoSpec
48
48
val cn = tpe.getType.getTypeName
49
49
describe(s " ${cn}" ) {
50
50
it(" is identical after multiple serialization round-trips." ) {
51
- forAll { value : A =>
51
+ forAll(minSuccessful( 10 )) { value : A =>
52
52
val encoded : String = json.writeValueAsString(value)
53
53
val decoded : A = json.readValue(encoded, tpe)
54
54
decoded should equal(value)
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ class JsonIoSpec
62
62
val cn = tpe.getType.getTypeName
63
63
describe(s " ${cn}" ) {
64
64
it(" is identical after multiple serialization round-trips.." ) {
65
- forAll { value : A =>
65
+ forAll(minSuccessful( 10 )) { value : A =>
66
66
val encoded : String = json.writeValueAsString(value)
67
67
68
68
val decoded : A = json.readValue(encoded, tpe)
You can’t perform that action at this time.
0 commit comments