From c852c9cc0d9273c52ed26f8bb8dce5c4ada76399 Mon Sep 17 00:00:00 2001 From: Ansgar Wehrhahn <31626864+AWehrhahn@users.noreply.github.com> Date: Fri, 23 Jul 2021 19:24:27 +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 e8b3e3c2..d7a9ae49 100644 --- a/test/test_nlte.py +++ b/test/test_nlte.py @@ -117,7 +117,7 @@ def test_dll(lfs_atmo, lfs_nlte): for lr, li in zip(linerefs, lineindices): if lr[0] != -1 and lr[1] != -1: counter += 1 - libsme.InputNLTE(bmat[:, lr], li) + libsme.InputNLTE(bmat[:, lr].T, li) flags = libsme.GetNLTEflags() assert np.any(flags)