Skip to content

Commit 7d50fa5

Browse files
committed
feat: add validation foundation
1 parent 72b3000 commit 7d50fa5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/flamingock-test-support/src/main/java/io/flamingock/support/stages/ThenStageImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ final class ThenStageImpl implements ThenStage {
2929

3030
private final List<Validator> validators = new ArrayList<>();
3131
private final ValidatorFactory validatorFactory;
32-
private final BuilderAccessor builderAccesor;
32+
private final BuilderAccessor builderAccessor;
3333

3434
ThenStageImpl(BuilderAccessor builderAccessor) {
35-
this.builderAccesor = builderAccessor;
35+
this.builderAccessor = builderAccessor;
3636
validatorFactory = new ValidatorFactory(builderAccessor);
3737
}
3838

@@ -53,7 +53,7 @@ public void verify() throws AssertionError {
5353

5454
ValidationHandler validationHandler;
5555
try {
56-
builderAccesor.run();
56+
builderAccessor.run();
5757
validationHandler = new ValidationHandler(validators);
5858

5959
} catch (Throwable actualException) {

0 commit comments

Comments
 (0)