Skip to content

Commit 51f646b

Browse files
committed
fixup: test comment
Signed-off-by: Todd Baert <[email protected]>
1 parent c0e6d0f commit 51f646b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/dev/openfeature/sdk/FlagEvaluationSpecTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ public void after(HookContext<Boolean> ctx, FlagEvaluationDetails<Boolean> detai
393393

394394
c.getBooleanValue("key", false, invocationCtx, FlagEvaluationOptions.builder().hook(hook).build());
395395

396-
// assert the connect overrides in before hook
396+
// assert the correct overrides in before hook
397397
verify(hook).before(argThat((arg) -> {
398398
EvaluationContext evaluationContext = arg.getCtx();
399399
return evaluationContext.getValue("api").asString().equals("1") &&
@@ -408,7 +408,7 @@ public void after(HookContext<Boolean> ctx, FlagEvaluationDetails<Boolean> detai
408408
evaluationContext.getValue("common6").asString().equals("4");
409409
}), any());
410410

411-
// assert the connect overrides in evaluation
411+
// assert the correct overrides in evaluation
412412
verify(provider).getBooleanEvaluation(any(), any(), argThat((arg) -> {
413413
return arg.getValue("api").asString().equals("1") &&
414414
arg.getValue("transaction").asString().equals("2") &&
@@ -424,7 +424,7 @@ public void after(HookContext<Boolean> ctx, FlagEvaluationDetails<Boolean> detai
424424
arg.getValue("common7").asString().equals("5");
425425
}));
426426

427-
// assert the connect overrides in after hook
427+
// assert the correct overrides in after hook
428428
verify(hook).after(argThat((arg) -> {
429429
EvaluationContext evaluationContext = arg.getCtx();
430430
return evaluationContext.getValue("api").asString().equals("1") &&

0 commit comments

Comments
 (0)