Skip to content

Commit 3f7fc1a

Browse files
committed
Return test to a reasonable state
1 parent c2a8c2f commit 3f7fc1a

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/meshcat/tests/test_drawing.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ def setUp(self):
2323
port = self.vis.url().split(":")[-1].split("/")[0]
2424
self.dummy_proc = subprocess.Popen([sys.executable, "-m", "meshcat.tests.dummy_websocket_client", str(port)])
2525
else:
26-
#self.vis.open()
26+
self.vis.open()
2727
self.dummy_proc = None
2828

29-
#self.vis.wait()
29+
self.vis.wait()
3030

3131
def tearDown(self):
3232
if self.dummy_proc is not None:
@@ -304,9 +304,6 @@ def runTest(self):
304304
v2 = v["duplicate"]
305305
v2.set_transform(tf.translation_matrix([2., 0., 0.]))
306306
v2.set_object(geom_2, mat_2)
307-
308-
import time
309-
time.sleep(1000)
310307

311308
class TestOrthographicCamera(VisualizerTest):
312309
def runTest(self):

0 commit comments

Comments
 (0)