From 7814cf0fb11257109b824b8ca6cf9b0b6b9d11ad Mon Sep 17 00:00:00 2001 From: Ansgar Wehrhahn <31626864+AWehrhahn@users.noreply.github.com> Date: Fri, 23 Jul 2021 23:50:35 +0200 Subject: [PATCH] fix test --- test/test_nlte.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_nlte.py b/test/test_nlte.py index d7a9ae49..bf28531d 100644 --- a/test/test_nlte.py +++ b/test/test_nlte.py @@ -138,7 +138,7 @@ def test_dll(lfs_atmo, lfs_nlte): libsme.InputNLTE(None, 0) with pytest.raises(TypeError): - libsme.InputNLTE(bmat[:, [0, 1]], 0.1) + libsme.InputNLTE(bmat[:, [0, 1]].T, 0.1) with pytest.raises(ValueError): libsme.InputNLTE([0, 1], 10)