Skip to content

Commit 2913ac5

Browse files
committed
update lower case package name in regression test
1 parent 5c1723b commit 2913ac5

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

nugridpy/regression_tests/selftest.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,36 +10,36 @@
1010
class TestModuleImports(unittest.TestCase):
1111

1212
def test_import_ascii_table(self):
13-
import NuGridPy.ascii_table
13+
import nugridpy.ascii_table
1414

1515
def test_import_astronomy(self):
16-
import NuGridPy.astronomy
16+
import nugridpy.astronomy
1717

1818
def test_import_data_plot(self):
19-
import NuGridPy.data_plot
19+
import nugridpy.data_plot
2020

2121
def test_import_grain(self):
22-
import NuGridPy.grain
22+
import nugridpy.grain
2323

2424
def test_import_h5T(self):
25-
import NuGridPy.h5T
25+
import nugridpy.h5T
2626

2727
def test_import_mesa(self):
28-
import NuGridPy.mesa
28+
import nugridpy.mesa
2929

3030
def test_import_nugridse(self):
31-
import NuGridPy.nugridse
31+
import nugridpy.nugridse
3232

3333
def test_import_ppn(self):
34-
import NuGridPy.ppn
34+
import nugridpy.ppn
3535

3636
def test_import_utils(self):
37-
import NuGridPy.utils
37+
import nugridpy.utils
3838

3939
class TestAbuChart(unittest.TestCase):
4040

4141
def test_abu_chart(self):
42-
from NuGridPy import utils,ppn,data_plot
42+
from nugridpy import utils,ppn,data_plot
4343
import matplotlib
4444
matplotlib.use('agg')
4545
import matplotlib.pylab as mpy
@@ -88,7 +88,7 @@ def test_abu_chart(self):
8888

8989

9090
def test_abu_evolution(self):
91-
from NuGridPy import ppn, utils
91+
from nugridpy import ppn, utils
9292
import matplotlib
9393
matplotlib.use('agg')
9494
import matplotlib.pylab as mpy

0 commit comments

Comments
 (0)