Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
testower committed Jan 24, 2025
1 parent 14555ce commit 063b149
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ public void testVehicleWithoutPricingPlanButDefaultPricingPlanIsntSkipped() {

vehicleTypeCache.updateAll(vehicleTypesWithPricingPlan("pricingPlanId"), 0, null);

VehicleFilter filter = new VehicleFilter(pricingPlanCache, vehicleTypeCache, stationCache);
VehicleFilter filter = new VehicleFilter(
pricingPlanCache,
vehicleTypeCache,
stationCache
);

GBFSVehicle vehicle = new GBFSVehicle();
vehicle.setVehicleId("VehicleWithoutPricingPlan");
Expand All @@ -48,7 +52,11 @@ public void testVehicleWithoutPricingPlanAndWithoutDefaultPricingPlanIsSkipped()

vehicleTypeCache.updateAll(vehicleTypesWithPricingPlan(null), 0, null);

VehicleFilter filter = new VehicleFilter(pricingPlanCache, vehicleTypeCache, stationCache);
VehicleFilter filter = new VehicleFilter(
pricingPlanCache,
vehicleTypeCache,
stationCache
);

GBFSVehicle vehicle = new GBFSVehicle();
vehicle.setVehicleId("VehicleWithoutPricingPlan");
Expand Down

0 comments on commit 063b149

Please sign in to comment.