From 92105fe7340d2502fdf7cb3b938fd3908c8f1fb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Santos-Oliv=C3=A1n?= Date: Wed, 2 Jun 2021 10:16:22 +0200 Subject: [PATCH] Remove print --- PythonAPI/test/smoke/test_vehicle_physics.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/PythonAPI/test/smoke/test_vehicle_physics.py b/PythonAPI/test/smoke/test_vehicle_physics.py index 7cd993daa..845a94491 100644 --- a/PythonAPI/test/smoke/test_vehicle_physics.py +++ b/PythonAPI/test/smoke/test_vehicle_physics.py @@ -607,11 +607,6 @@ class TestStickyControl(SyncSmokeTest): d1, v1 = self.run_scenario(bp_veh, inp_control, continous=True) d2, v2 = self.run_scenario(bp_veh, inp_control, continous=True, sticky="False") - - print("Sticky True", d0, v0) - print("Test 1", d1, v1) - print("Test 2", d2, v2) - if not equal_tol(d0, d1, 1e-3) or not equal_tol(v0, v1, 1e-3): self.fail("%s: The input is not sticky: StickyTrue: [%f, %f] ContinousThrottle: [%f, %f]" % (bp_veh.id, d0, v0, d1, v1))