diff --git a/attestation_statement_android_safety_net_test.go b/attestation_statement_android_safety_net_test.go deleted file mode 100644 index 4abd62e..0000000 --- a/attestation_statement_android_safety_net_test.go +++ /dev/null @@ -1,23 +0,0 @@ -package webauthn - -import ( - "testing" - - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" -) - -func TestVerifyAndroidSafetyNetAttestationStatement(t *testing.T) { - t.Run("valid", func(t *testing.T) { - for _, name := range []string{"AndroidSafetyNet"} { - response := readTestAuthenticatorAttestationResponse(t, name) - attestationObject, err := response.UnmarshalAttestationObject() - require.NoError(t, err) - clientDataJSONHash := response.GetClientDataJSONHash() - t.Run(name, func(t *testing.T) { - _, err = VerifyAttestationStatement(attestationObject, clientDataJSONHash) - assert.NoError(t, err) - }) - } - }) -}