Skip to content

Commit

Permalink
Fix error strings in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Diane Huxley committed Oct 1, 2024
1 parent f4a80e3 commit 30d475e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ class VerifiableCredentialTest {
VerifiableCredential.create(ISSUER, CREDENTIAL_SUBJECT, options)
}

assertTrue(exception.message.contains("failed to resolve status code 500"))
assertTrue(exception.message.contains("Failed to fetch credential schema"))

mockWebServer.shutdown()
}
Expand Down Expand Up @@ -1054,7 +1054,7 @@ class VerifiableCredentialTest {
VerifiableCredential.fromVcJwt(vcJwtAtPort, true)
}

assertTrue(exception.message.contains("failed to resolve status code 500"))
assertTrue(exception.message.contains("Failed to fetch credential schema"))

mockWebServer.shutdown()
}
Expand Down

0 comments on commit 30d475e

Please sign in to comment.