Skip to content

Commit dedfa39

Browse files
committed
Update test
1 parent ca9928b commit dedfa39

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/http/pipeline/stages/AuthSchemeResolutionStageTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ void execute_withIdentityProviderUpdater_callsUpdaterWithRequest() throws Except
147147
IdentityProviders updatedProviders = mock(IdentityProviders.class);
148148

149149
IdentityProviderUpdater updater = mock(IdentityProviderUpdater.class);
150-
doReturn(updatedProviders).when(updater).update(sdkRequest, baseProviders);
150+
doReturn(updatedProviders).when(updater).update(sdkRequest, baseProviders, executionAttributes);
151151

152152
// Setup so that auth scheme uses the updated providers
153153
@SuppressWarnings("unchecked")
@@ -162,7 +162,7 @@ void execute_withIdentityProviderUpdater_callsUpdaterWithRequest() throws Except
162162

163163
stage.execute(httpRequestBuilder, context);
164164

165-
verify(updater).update(sdkRequest, baseProviders);
165+
verify(updater).update(sdkRequest, baseProviders, executionAttributes);
166166
}
167167

168168
@Test

0 commit comments

Comments
 (0)