Skip to content

Commit fe168d9

Browse files
committed
chore: fix compatibility suite
1 parent a254fc4 commit fe168d9

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

compatibility-suite/tests/shared_steps/provider.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,10 @@ fn a_pact_file_for_interaction_is_to_be_verified_with_the_following_provider_sta
462462

463463
#[when("the verification is run")]
464464
async fn the_verification_is_run(world: &mut ProviderWorld) -> anyhow::Result<()> {
465+
if rustls::crypto::CryptoProvider::get_default().is_none() {
466+
let _ = rustls::crypto::ring::default_provider().install_default();
467+
}
468+
465469
let options = world.verification_options();
466470
world.verification_results = verify_provider_async(
467471
world.provider_info.clone(),

0 commit comments

Comments
 (0)