Commit e92f7ec
committed
Fix regeneration of RegistrationTestData.assertion
This was broken in commit 8474644 because the
`copy` method is no longer used, so `this.assertion` is no longer copied into
`newValue`, and therefore `newValue.assertion` is always `None` in this `.map`
call. The fix is to call `.map` on `this.assertion` (which is still the old
value, which may be `Some`) instead of on `newValue.assertion` (which is always
`None`).1 parent 8474644 commit e92f7ec
File tree
1 file changed
+1
-1
lines changed- webauthn-server-core/src/test/scala/com/yubico/webauthn
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
911 | 911 | | |
912 | 912 | | |
913 | 913 | | |
914 | | - | |
| 914 | + | |
915 | 915 | | |
916 | 916 | | |
917 | 917 | | |
| |||
0 commit comments