We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 813a24e commit 3c7e2ccCopy full SHA for 3c7e2cc
binding/python/test_rhino.py
@@ -14,7 +14,7 @@
14
15
from parameterized import parameterized
16
17
-from _rhino import Rhino, RhinoError
+from _rhino import Rhino, RhinoError, list_hardware_devices
18
from test_util import *
19
20
within_context_parameters, out_of_context_parameters = load_test_data()
@@ -109,7 +109,9 @@ def test_reset(self):
109
self.assertTrue(inference.is_understood)
110
111
def test_available_devices(self) -> None:
112
- res = list_hardware_devices(library_path=default_library_path("../.."))
+ relative_path = '../..'
113
+
114
+ res = list_hardware_devices(library_path=pv_library_path(relative_path))
115
self.assertGreater(len(res), 0)
116
for x in res:
117
self.assertIsInstance(x, str)
0 commit comments