Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
optionsome committed Mar 14, 2024
1 parent f518363 commit dfe08af
Showing 1 changed file with 2 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1202,12 +1202,7 @@ public void cancelingAddedTrip() {
// THEN
assertAddedTrip(SERVICE_DATE, this.addedTripId, updater, true);

builder = new TripUpdateBuilder(
addedTripId,
SERVICE_DATE,
ADDED,
transitModel.getTimeZone()
);
builder = new TripUpdateBuilder(addedTripId, SERVICE_DATE, ADDED, transitModel.getTimeZone());

var tripDescriptorBuilder = TripDescriptor.newBuilder();
tripDescriptorBuilder.setTripId(addedTripId);
Expand Down Expand Up @@ -1280,12 +1275,7 @@ public void deletingAddedTrip() {
// THEN
assertAddedTrip(SERVICE_DATE, this.addedTripId, updater, true);

builder = new TripUpdateBuilder(
addedTripId,
SERVICE_DATE,
ADDED,
transitModel.getTimeZone()
);
builder = new TripUpdateBuilder(addedTripId, SERVICE_DATE, ADDED, transitModel.getTimeZone());

var tripDescriptorBuilder = TripDescriptor.newBuilder();
tripDescriptorBuilder.setTripId(addedTripId);
Expand Down

0 comments on commit dfe08af

Please sign in to comment.