Skip to content

Commit 3f93097

Browse files
committed
Apply code review feedback
1 parent c0b8ec7 commit 3f93097

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/tests/AWS.Lambda.Powertools.Parameters.Tests/DynamoDB/DynamoDBProviderTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ await providerHandler
222222
.Received(1)
223223
.GetAsync<string>(key,
224224
Arg.Is<ParameterProviderConfiguration>(x => x != null && !x.ForceFetch),
225-
transformation,
225+
Arg.Is<Transformation>(x=> x == transformation),
226226
null);
227227
Assert.NotNull(result);
228228
Assert.Equal(value, result);
@@ -263,7 +263,7 @@ await providerHandler
263263
.GetAsync<string>(key,
264264
Arg.Is<ParameterProviderConfiguration>(x => x != null && !x.ForceFetch),
265265
null,
266-
transformerName);
266+
Arg.Is<string>(x => x == transformerName));
267267
Assert.NotNull(result);
268268
Assert.Equal(value, result);
269269
}

0 commit comments

Comments
 (0)