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 e840875 commit afa8fc0Copy full SHA for afa8fc0
Bindings/Python/tests/test_DataAdapter.py
@@ -36,7 +36,7 @@ def test_C3DFileAdapter(self):
36
except AttributeError:
37
# C3D support not available. OpenSim was not compiled with BTK.
38
return
39
- tables = adapter.read(os.path.join(test_dir, 'walking2.c3d'))
+ tables = adapter.read(os.path.join(test_dir, 'walking2.c3d'), 0)
40
markers = tables['markers']
41
forces = tables['forces']
42
@@ -45,7 +45,7 @@ def test_C3DFileAdapter(self):
45
assert forces.getNumRows() == 9992
46
assert forces.getNumColumns() == 6
47
48
- tables = adapter.read(os.path.join(test_dir, 'walking5.c3d'))
+ tables = adapter.read(os.path.join(test_dir, 'walking5.c3d'), 1)
49
50
# Marker data read from C3D.
51
0 commit comments