Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
niladic committed Oct 30, 2023
1 parent 4dcd4fc commit 9fea6c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/helper/BusinessDaysCalculator.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object BusinessDaysCalculator {
def businessHoursBetween(
startTime: ZonedDateTime,
endTime: ZonedDateTime,
holidays: Set[LocalDate]
holidays: Set[LocalDate] = Set.empty
): Int = {
val (start, end) =
if (endTime.isAfter(startTime)) (startTime, endTime) else (endTime, startTime)
Expand Down

0 comments on commit 9fea6c7

Please sign in to comment.