Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
nkuehnel committed Oct 13, 2023
1 parent 28b90df commit 258d56b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ public void test_group() {

var requestId = Id.create("taxi_0", Request.class);
fixture.assertPassengerEvents(
Sets.newHashSet(person1, person2),
List.of(person1, person2),
new ActivityEndEvent(departureTime, person2, fixture.linkAB.getId(), null, START_ACTIVITY),
new PersonDepartureEvent(departureTime, person2, fixture.linkAB.getId(), MODE, MODE),
new ActivityEndEvent(departureTime, person1, fixture.linkAB.getId(), null, START_ACTIVITY),
new PersonDepartureEvent(departureTime, person1, fixture.linkAB.getId(), MODE, MODE),
new PassengerRequestScheduledEvent(departureTime, MODE, requestId, List.of(person1, person2), VEHICLE_ID, 0,
new PassengerRequestScheduledEvent(departureTime, MODE, requestId, List.of(person2, person1), VEHICLE_ID, 0,
scheduledDropoffTime),
new PersonEntersVehicleEvent(pickupStartTime, person1, Id.createVehicleId(VEHICLE_ID)),
new PassengerPickedUpEvent(pickupStartTime, MODE, requestId, person1, VEHICLE_ID),
Expand Down

0 comments on commit 258d56b

Please sign in to comment.