Skip to content

Commit

Permalink
fix vm id reference
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick <[email protected]>
  • Loading branch information
PatStLouis committed Sep 15, 2024
1 parent 92472c3 commit 8cfffcc
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions aries_cloudagent/vc/vc_di/tests/test_cryptosuites.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ async def asyncSetUp(self):
self.eddsa_key_info.verkey, ED25519
).key_id

@pytest.mark.eddsa_jcs_2022
async def test_eddsa_jcs_2022_add_proof(self):
options = {
"type": "DataIntegrityProof",
Expand All @@ -43,7 +42,6 @@ async def test_eddsa_jcs_2022_add_proof(self):
assert proof["proofValue"]
assert proof["verificationMethod"] == self.eddsa_verification_method

@pytest.mark.eddsa_jcs_2022
async def test_eddsa_jcs_2022_proof_set(self):
options = {
"type": "DataIntegrityProof",
Expand All @@ -64,7 +62,6 @@ async def test_eddsa_jcs_2022_proof_set(self):
assert proof["proofValue"]
assert proof["verificationMethod"] == self.eddsa_verification_method

@pytest.mark.eddsa_jcs_2022
async def test_eddsa_jcs_2022_verify_proof(self):
options = {
"type": "DataIntegrityProof",
Expand All @@ -80,7 +77,6 @@ async def test_eddsa_jcs_2022_verify_proof(self):
bad_proof["proofValue"] = bad_proof["proofValue"][:-1]
assert not await suite.verify_proof(secured_document, proof)

@pytest.mark.eddsa_jcs_2022
async def test_eddsa_jcs_2022_verify_proof_set(self):
options = {
"type": "DataIntegrityProof",
Expand Down

0 comments on commit 8cfffcc

Please sign in to comment.