Skip to content

Commit

Permalink
rename test
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Jul 31, 2024
1 parent 8eb5baf commit 7789cae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ add_test_case(credentials_provider_x509_real_new_destroy)
add_net_test_case(credentials_provider_sts_web_identity_new_destroy_from_parameters)
add_net_test_case(credentials_provider_sts_web_identity_new_destroy_from_env)
add_net_test_case(credentials_provider_sts_web_identity_new_destroy_from_config)
add_net_test_case(credentials_provider_sts_web_identity_fail_with_empty_config_or_env)
add_net_test_case(credentials_provider_sts_web_identity_fail_with_empty_config_and_env)
add_net_test_case(credentials_provider_sts_web_identity_new_destroy_from_cached_config)
add_net_test_case(credentials_provider_sts_web_identity_new_failed_without_env_and_config)
add_net_test_case(credentials_provider_sts_web_identity_connect_failure)
Expand Down
6 changes: 3 additions & 3 deletions tests/credentials_provider_sts_web_identity_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ AWS_STATIC_STRING_FROM_LITERAL(
"[profile foo]\n"
"region=us-east-1\n");

static int s_credentials_provider_sts_web_identity_fail_with_empty_config_or_env(
static int s_credentials_provider_sts_web_identity_fail_with_empty_config_and_env(
struct aws_allocator *allocator,
void *ctx) {
(void)ctx;
Expand Down Expand Up @@ -543,8 +543,8 @@ static int s_credentials_provider_sts_web_identity_fail_with_empty_config_or_env
return 0;
}
AWS_TEST_CASE(
credentials_provider_sts_web_identity_fail_with_empty_config_or_env,
s_credentials_provider_sts_web_identity_fail_with_empty_config_or_env);
credentials_provider_sts_web_identity_fail_with_empty_config_and_env,
s_credentials_provider_sts_web_identity_fail_with_empty_config_and_env);

static int s_credentials_provider_sts_web_identity_new_destroy_from_cached_config(
struct aws_allocator *allocator,
Expand Down

0 comments on commit 7789cae

Please sign in to comment.