Skip to content

Commit 0f53550

Browse files
committed
typo, that's the reason
1 parent 15af601 commit 0f53550

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/electronic_structure/test_boltztrap2.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def test_from_file(self):
130130

131131

132132
@pytest.mark.skipif(not BOLTZTRAP2_PRESENT, reason="No boltztrap2, skipping tests.")
133-
class TestBztInterpolator(TestCase):
133+
class TestBztInterpolator:
134134
def setUp(self):
135135
self.loader = VasprunBSLoader(VASP_RUN)
136136
self.bztInterp = BztInterpolator(self.loader, lpfac=2)
@@ -208,8 +208,8 @@ def test_tot_proj_dos(self):
208208

209209

210210
@pytest.mark.skipif(not BOLTZTRAP2_PRESENT, reason="No boltztrap2, skipping tests.")
211-
class TestBztTransportProperties(TestCase):
212-
def setup(self):
211+
class TestBztTransportProperties:
212+
def setUp(self):
213213
# non spin polarized
214214
loader = VasprunBSLoader(VASP_RUN)
215215
bztInterp = BztInterpolator(loader, lpfac=2)
@@ -311,7 +311,7 @@ def test_compute_properties_doping(self):
311311

312312

313313
@pytest.mark.skipif(not BOLTZTRAP2_PRESENT, reason="No boltztrap2, skipping tests.")
314-
class TestBztPlotter(TestCase):
314+
class TestBztPlotter:
315315
def test_plot(self):
316316
loader = VasprunBSLoader(VASP_RUN)
317317
bztInterp = BztInterpolator(loader, lpfac=2)

0 commit comments

Comments
 (0)