Skip to content

Commit baf5b13

Browse files
committed
Nexus 5 assertion certificate expired
1 parent 1e05ee3 commit baf5b13

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/fido_mds/tests/test_verify.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
__author__ = 'lundberg'
1212

1313

14-
@pytest.mark.parametrize('attestation_obj,client_data', [YUBIKEY_4, YUBIKEY_5_NFC, MICROSOFT_SURFACE_1796, NEXUS_5])
14+
@pytest.mark.parametrize('attestation_obj,client_data', [YUBIKEY_4, YUBIKEY_5_NFC, MICROSOFT_SURFACE_1796])
1515
def test_verify(mds: FidoMetadataStore, attestation_obj: str, client_data: str):
1616
att = Attestation.from_base64(attestation_obj)
1717
cd = websafe_decode(client_data)
1818
assert mds.verify_attestation(attestation=att, client_data=cd) is True
1919

2020

2121
# test attestations with short-lived certs so metadata can't be validated
22-
@pytest.mark.parametrize('attestation_obj,client_data', [IPHONE_12])
22+
@pytest.mark.parametrize('attestation_obj,client_data', [IPHONE_12, NEXUS_5])
2323
def test_verify_no_validate(mds: FidoMetadataStore, attestation_obj: str, client_data: str):
2424
att = Attestation.from_base64(attestation_obj)
2525
cd = websafe_decode(client_data)

0 commit comments

Comments
 (0)