We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0b8ec7 commit 3f93097Copy full SHA for 3f93097
libraries/tests/AWS.Lambda.Powertools.Parameters.Tests/DynamoDB/DynamoDBProviderTest.cs
@@ -222,7 +222,7 @@ await providerHandler
222
.Received(1)
223
.GetAsync<string>(key,
224
Arg.Is<ParameterProviderConfiguration>(x => x != null && !x.ForceFetch),
225
- transformation,
+ Arg.Is<Transformation>(x=> x == transformation),
226
null);
227
Assert.NotNull(result);
228
Assert.Equal(value, result);
@@ -263,7 +263,7 @@ await providerHandler
263
264
265
null,
266
- transformerName);
+ Arg.Is<string>(x => x == transformerName));
267
268
269
}
0 commit comments