Fix assumption that CSM was a numpy array not a list
This commit is contained in:
parent
b314ced4f7
commit
635375a012
2 changed files with 7 additions and 10 deletions
|
|
@ -44,12 +44,10 @@ def increasing_xyz_dict_generator(*_args, **_kwargs):
|
|||
@pytest.fixture
|
||||
def csm_matrix():
|
||||
"""Return an example CSM matrix."""
|
||||
return np.array(
|
||||
[
|
||||
[0.03061156624485296, 1.8031242270940833],
|
||||
[1.773236372778601, 0.006660431608601435],
|
||||
]
|
||||
)
|
||||
return [
|
||||
[0.03061156624485296, 1.8031242270940833],
|
||||
[1.773236372778601, 0.006660431608601435],
|
||||
]
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue