We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bed7091 commit dd31b53Copy full SHA for dd31b53
webauthn-server-core/src/test/scala/com/yubico/webauthn/RelyingPartyStartOperationSpec.scala
@@ -1007,15 +1007,11 @@ class RelyingPartyStartOperationSpec
1007
pkcco.getHints.asScala should equal(List("security-key"))
1008
}
1009
1010
- it("to empty") {
+ it("or not, defaulting to the empty list.") {
1011
val pkcco = rp.startRegistration(
1012
- StartRegistrationOptions
1013
- .builder()
1014
- .user(userId)
1015
- .hints("")
1016
- .build()
+ StartRegistrationOptions.builder().user(userId).build()
1017
)
1018
- pkcco.getHints.asScala should equal(List(""))
+ pkcco.getHints.asScala should equal(List())
1019
1020
1021
0 commit comments