From f8fa2aa74b457c9ee3f3cad1f1cbd9cae8c1ff4d Mon Sep 17 00:00:00 2001 From: jay Date: Thu, 31 May 2018 10:58:39 -0700 Subject: [PATCH] Updates tests for sp --- plio/io/tests/test_io_spectral_profiler.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plio/io/tests/test_io_spectral_profiler.py b/plio/io/tests/test_io_spectral_profiler.py index 772712d..0446607 100644 --- a/plio/io/tests/test_io_spectral_profiler.py +++ b/plio/io/tests/test_io_spectral_profiler.py @@ -18,8 +18,7 @@ class Test_Spectral_Profiler_IO(unittest.TestCase): def test_openspc(self): ds = io_spectral_profiler.Spectral_Profiler(self.examplefile) self.assertEqual(ds.nspectra, 38) - self.assertIsInstance(ds.spectra, pd.Panel) - self.assertEqual(ds.spectra[0].columns.tolist(), ['RAW', 'REF1', 'REF2', 'QA']) + self.assertEqual(ds.spectra[0].columns.tolist(), ['RAW', 'REF1', 'REF2', 'QA', 'RAD']) def test_read_browse(self): ds = io_spectral_profiler.Spectral_Profiler(self.examplefile) -- GitLab