From 95774171f5678fc181c216ad0c7278f5e4025d1b Mon Sep 17 00:00:00 2001 From: ZhilkinSerg Date: Wed, 15 Jan 2020 00:50:08 +0300 Subject: [PATCH] Update vehicle_efficiency_test.cpp --- tests/vehicle_efficiency_test.cpp | 33 ++++++++++++++++--------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/tests/vehicle_efficiency_test.cpp b/tests/vehicle_efficiency_test.cpp index 5aa0e54ec2838..ef9b7b2a86e53 100644 --- a/tests/vehicle_efficiency_test.cpp +++ b/tests/vehicle_efficiency_test.cpp @@ -429,22 +429,23 @@ TEST_CASE( "vehicle_make_efficiency_case", "[.]" ) // Fix test for electric vehicles TEST_CASE( "vehicle_efficiency", "[vehicle] [engine]" ) { - test_vehicle( "beetle", 745101, 297500, 244600, 80500, 61460 ); - test_vehicle( "car", 1050050, 527300, 316200, 48620, 29740 ); - test_vehicle( "car_sports", 1083646, 456200, 324100, 39880, 24620 ); + test_vehicle( "beetle", 745101, 282500, 234300, 79040, 60450 ); + test_vehicle( "car", 1050050, 481900, 300300, 47840, 29270 ); + test_vehicle( "car_sports", 1083646, 368200, 277000, 38890, 24210 ); test_vehicle( "electric_car", 1055519, 217800, 126500, 18350, 9710 ); - test_vehicle( "suv", 1249718, 998800, 504800, 74270, 35420 ); - test_vehicle( "motorcycle", 163085, 77300, 63120, 47530, 39030 ); - test_vehicle( "quad_bike", 265345, 75950, 75950, 35190, 35190 ); - test_vehicle( "scooter", 62587, 266900, 258300, 195200, 184400 ); - test_vehicle( "superbike", 242085, 72120, 46820, 34580, 21610 ); - test_vehicle( "ambulance", 1751089, 435300, 360400, 66500, 51380 ); - test_vehicle( "fire_engine", 2540401, 1174000, 982200, 248500, 219000 ); - test_vehicle( "fire_truck", 6226393, 308500, 201900, 19950, 4747 ); - test_vehicle( "truck_swat", 5959334, 505800, 348000, 30060, 7719 ); - test_vehicle( "tractor_plow", 723658, 528000, 528000, 117000, 117000 ); - test_vehicle( "apc", 5801619, 1100000, 948300, 132800, 86880 ); - test_vehicle( "humvee", 5503245, 607600, 340900, 25880, 9263 ); - test_vehicle( "road_roller", 8705726, 363400, 418100, 22990, 6996 ); + test_vehicle( "suv", 1249718, 916900, 483000, 73470, 35080 ); + test_vehicle( "motorcycle", 163085, 74030, 61180, 46200, 38100 ); + test_vehicle( "quad_bike", 265345, 73170, 73170, 34300, 34300 ); + test_vehicle( "scooter", 62587, 228800, 216400, 170200, 161900 ); + test_vehicle( "superbike", 242085, 68580, 45170, 33670, 21220 ); + test_vehicle( "ambulance", 1751089, 410800, 342700, 65630, 50810 ); + test_vehicle( "fire_engine", 2540401, 1140000, 958700, 246000, 216800 ); + test_vehicle( "fire_truck", 6226393, 295400, 188800, 19750, 4700 ); + test_vehicle( "truck_swat", 5959334, 483800, 322700, 29610, 7604 ); + test_vehicle( "tractor_plow", 723658, 482400, 482400, 113900, 113900 ); + test_vehicle( "apc", 5801619, 1069000, 922400, 130800, 85590 ); + test_vehicle( "humvee", 5503245, 574300, 325900, 25620, 9171 ); + test_vehicle( "road_roller", 8705726, 351200, 385800, 22760, 6925 ); test_vehicle( "golf_cart", 444630, 52460, 105500, 27250, 14200 ); + }