From 77c95d407b09d319b0fa6bd3afa4319215fb281c Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 21 Sep 2021 13:18:52 -0300 Subject: [PATCH] Bug 28772: Fix auth_authenticate_api_request.t Signed-off-by: Tomas Cohen Arazi --- t/db_dependent/api/v1/auth_authenticate_api_request.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/api/v1/auth_authenticate_api_request.t b/t/db_dependent/api/v1/auth_authenticate_api_request.t index 016aa9866d..ef7edede95 100755 --- a/t/db_dependent/api/v1/auth_authenticate_api_request.t +++ b/t/db_dependent/api/v1/auth_authenticate_api_request.t @@ -64,7 +64,7 @@ subtest 'token-based tests' => sub { my $formData = { grant_type => 'client_credentials', client_id => $api_key->client_id, - client_secret => $api_key->secret + client_secret => $api_key->plain_text_secret }; $t->post_ok('/api/v1/oauth/token', form => $formData) ->status_is(200) -- 2.30.2