From 0cbee98f935fb60d3bb858e04e202ba8d2664b1d Mon Sep 17 00:00:00 2001 From: Patrik Stas Date: Tue, 29 Aug 2023 21:50:55 +0200 Subject: [PATCH] Do not run test_agency_pool_it_should_fail_to_select_credentials_for_predicate for credx implementation Signed-off-by: Patrik Stas --- aries_vcx/tests/test_creds_proofs.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aries_vcx/tests/test_creds_proofs.rs b/aries_vcx/tests/test_creds_proofs.rs index 7c4cae49a8..d3ca1df5b5 100644 --- a/aries_vcx/tests/test_creds_proofs.rs +++ b/aries_vcx/tests/test_creds_proofs.rs @@ -733,6 +733,8 @@ mod tests { .await; } + // todo: credx implementation does not support checking credential value in respect to predicate + #[cfg(not(feature = "modular_libs"))] #[tokio::test] #[ignore] async fn test_agency_pool_it_should_fail_to_select_credentials_for_predicate() { @@ -776,6 +778,7 @@ mod tests { let mut prover = create_proof(&mut consumer, &consumer_to_institution, None).await; let selected_credentials = prover_select_credentials(&mut prover, &mut consumer, &consumer_to_institution, None).await; + assert!(selected_credentials.credential_for_referent.is_empty()); }) .await;