From 0ca6cacdf04a455730a6a507d5a51860c8dcb9ef Mon Sep 17 00:00:00 2001 From: Feng Shuai Date: Mon, 15 Apr 2024 08:42:17 +0000 Subject: [PATCH] Update tests/test_cube3d.py, tests/test_map2d.py, tests/test_spec1d.py --- tests/test_cube3d.py | 10 +++++----- tests/test_map2d.py | 6 +++--- tests/test_spec1d.py | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/test_cube3d.py b/tests/test_cube3d.py index 2f9706a..c60d642 100644 --- a/tests/test_cube3d.py +++ b/tests/test_cube3d.py @@ -1,10 +1,10 @@ import sys sys.path.insert(0, '..') import unittest -from gehong import spec1d as s -from gehong import map2d as m -from gehong import cube3d as b -from gehong import config as c +from csst_ifs_gehong import spec1d as s +from csst_ifs_gehong import map2d as m +from csst_ifs_gehong import cube3d as b +from csst_ifs_gehong import config as c import numpy as np import matplotlib.pyplot as plt @@ -76,4 +76,4 @@ class test_cube3d(unittest.TestCase): print(">>> Unit test for **Spec Cube** Modelling has been passed!") if __name__=='__main__': - unittest.main() \ No newline at end of file + unittest.main() diff --git a/tests/test_map2d.py b/tests/test_map2d.py index 7ed6cbc..0305204 100644 --- a/tests/test_map2d.py +++ b/tests/test_map2d.py @@ -1,8 +1,8 @@ import sys sys.path.insert(0, '..') import unittest -from gehong import map2d as m -from gehong import config as c +from csst_ifs_gehong import map2d as m +from csst_ifs_gehong import config as c import numpy as np import matplotlib.pyplot as plt @@ -234,4 +234,4 @@ class test_map2d(unittest.TestCase): print("SBmap No Problem!") if __name__=='__main__': - unittest.main() \ No newline at end of file + unittest.main() diff --git a/tests/test_spec1d.py b/tests/test_spec1d.py index 4daba17..abe8117 100644 --- a/tests/test_spec1d.py +++ b/tests/test_spec1d.py @@ -1,8 +1,8 @@ import sys sys.path.insert(0, '..') import unittest -from gehong import spec1d as s -from gehong import config as c +from csst_ifs_gehong import spec1d as s +from csst_ifs_gehong import config as c import numpy as np import matplotlib.pyplot as plt @@ -365,4 +365,4 @@ class test_spec1d(unittest.TestCase): print(">>> Unit test for **AGN** Modelling has been passed!") if __name__=='__main__': - unittest.main() \ No newline at end of file + unittest.main() -- GitLab