Loading tests/test_flip_image.py +2 −2 Original line number Diff line number Diff line Loading @@ -20,13 +20,13 @@ class FlipImageTestCase(unittest.TestCase): def test_flip_image_on_server(self): """test flip image on server""" image_input = np.load( image_input = np.loadtxt( os.path.join( os.environ["UNIT_TEST_DATA_ROOT"], "csst_proto/test_flip/input/image.txt", ) ) image_answer = np.load( image_answer = np.loadtxt( os.path.join( os.environ["UNIT_TEST_DATA_ROOT"], "csst_proto/test_flip/answer/flipped_image.txt", Loading Loading
tests/test_flip_image.py +2 −2 Original line number Diff line number Diff line Loading @@ -20,13 +20,13 @@ class FlipImageTestCase(unittest.TestCase): def test_flip_image_on_server(self): """test flip image on server""" image_input = np.load( image_input = np.loadtxt( os.path.join( os.environ["UNIT_TEST_DATA_ROOT"], "csst_proto/test_flip/input/image.txt", ) ) image_answer = np.load( image_answer = np.loadtxt( os.path.join( os.environ["UNIT_TEST_DATA_ROOT"], "csst_proto/test_flip/answer/flipped_image.txt", Loading