diff --git a/py/client/tests/test_plugin_client.py b/py/client/tests/test_plugin_client.py index b0e3a565e6e..64081c12f6b 100644 --- a/py/client/tests/test_plugin_client.py +++ b/py/client/tests/test_plugin_client.py @@ -36,6 +36,7 @@ def test_create(self): self.assertGreater(len(refs), 0) ref = refs[0] self.assertEqual(ref.type, "Table") + plugin_client.close() def test_publish_fetch(self): plugin_client = self.session.plugin_client(self.session.exportable_objects["plot3"]) @@ -63,7 +64,6 @@ def test_publish_fetch(self): sub_session.close() with self.subTest("Fetchable in the Plugin object"): - self.skipTest("need to wait for https://github.com/deephaven/deephaven-core/issues/5996") payload, refs = next(plugin_client.resp_stream) self.assertGreater(len(payload), 0) self.assertGreater(len(refs), 0) @@ -85,7 +85,6 @@ def test_publish_fetch(self): sub_session.close() with self.subTest("released Plugin object"): - self.skipTest("need to wait for https://github.com/deephaven/deephaven-core/issues/5996") sub_session = Session() server_obj = ServerObject(type="Figure", ticket=shared_ticket) sub_plugin_client = sub_session.plugin_client(server_obj)