Skip to content

Commit

Permalink
Fix GtfsScheduleTest
Browse files Browse the repository at this point in the history
  • Loading branch information
munterfi committed Apr 28, 2024
1 parent e7933bb commit 09cb65f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void setUp() {
.addRoute("route2", "agency1", "102", "Cross Town", RouteType.BUS)
.addRoute("route3", "agency1", "103", "Circulator", RouteType.BUS)
.addCalendar("weekdays", EnumSet.range(DayOfWeek.MONDAY, DayOfWeek.FRIDAY), START_DATE, END_DATE)
.addCalendar("weekends", EnumSet.of(DayOfWeek.SATURDAY), LocalDate.now(), LocalDate.now().plusMonths(1))
.addCalendar("weekends", EnumSet.of(DayOfWeek.SATURDAY), START_DATE, END_DATE)
.addTrip("trip1", "route1", "weekdays")
.addTrip("trip2", "route2", "weekdays")
.addTrip("trip3", "route3", "weekends")
Expand Down

0 comments on commit 09cb65f

Please sign in to comment.