From aefd5a9d665aa5476dd855b525033e94a8450b56 Mon Sep 17 00:00:00 2001 From: Tigran Gasparian Date: Tue, 5 Jun 2018 09:28:38 +0200 Subject: [PATCH] Uses SHARED_MEMORY_SERVER instead of GUI_SERVER when starting a bullet server in the unit test. --- examples/pybullet/unittests/userDataTest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pybullet/unittests/userDataTest.py b/examples/pybullet/unittests/userDataTest.py index 661298997..2b3db2cb4 100644 --- a/examples/pybullet/unittests/userDataTest.py +++ b/examples/pybullet/unittests/userDataTest.py @@ -11,7 +11,7 @@ class TestUserDataMethods(unittest.TestCase): @classmethod def setUpClass(cls): - TestUserDataMethods.server = bullet_client.BulletClient(connection_mode=pybullet.GUI_SERVER) + TestUserDataMethods.server = bullet_client.BulletClient(connection_mode=pybullet.SHARED_MEMORY_SERVER) @classmethod def tearDownClass(cls):