From d41ca4dcb08c33571d30e299f3f89f15dd661706 Mon Sep 17 00:00:00 2001 From: Eduardo Rodrigues Date: Thu, 23 Mar 2023 02:03:10 +0100 Subject: [PATCH] chore: fix test with no default features --- aws/rust-runtime/aws-config/src/default_provider/credentials.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aws/rust-runtime/aws-config/src/default_provider/credentials.rs b/aws/rust-runtime/aws-config/src/default_provider/credentials.rs index 70b5725d0b1..7f04b334b56 100644 --- a/aws/rust-runtime/aws-config/src/default_provider/credentials.rs +++ b/aws/rust-runtime/aws-config/src/default_provider/credentials.rs @@ -298,7 +298,9 @@ mod test { make_test!(ecs_credentials); make_test!(ecs_credentials_invalid_profile); + #[cfg(feature = "credentials-sso")] make_test!(sso_assume_role); + #[cfg(feature = "credentials-sso")] make_test!(sso_no_token_file); #[tokio::test]