Fix assumption that CSM was a numpy array not a list

This commit is contained in:
Julian Stirling 2025-10-20 16:40:41 +01:00
parent b314ced4f7
commit 635375a012
2 changed files with 7 additions and 10 deletions

View file

@ -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