Skip to content

Commit

Permalink
chore: minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zepfred authored and triceo committed Jun 26, 2024
1 parent d776e12 commit afc70bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ Before in `*ConstraintProviderTest.java`:
----
Job job = new Job("job1", ...);
constraintVerifier.verifyThat(FoodPackagingConstraintProvider::dueDateTime)
constraintVerifier.verifyThat(FoodPackagingConstraintProvider::maxEndDateTime)
.given(job)
.penalizesBy(...);
----
Expand All @@ -283,7 +283,7 @@ Job job = new Job("job1", ...);
Line line = new Line("line1", ...);
job.setLine(line);
constraintVerifier.verifyThat(FoodPackagingConstraintProvider::dueDateTime)
constraintVerifier.verifyThat(FoodPackagingConstraintProvider::maxEndDateTime)
.given(job)
.penalizesBy(...);
----
Expand Down

0 comments on commit afc70bb

Please sign in to comment.