Skip to content

Commit c88a7ea

Browse files
committed
correct fixture typos...
1 parent 5072d22 commit c88a7ea

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tests/test_bondcalculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def test_setTypeMask(self):
255255
class TestBondCalculatorObjCryst(unittest.TestCase):
256256

257257
@pytest.fixture(autouse=True)
258-
def _check_periodictable(self, has_pyobjcryst, _msg_nopyobjcryst):
258+
def _check_pyobjcryst(self, has_pyobjcryst, _msg_nopyobjcryst):
259259
if not has_pyobjcryst:
260260
pytest.skip(_msg_nopyobjcryst)
261261

tests/test_overlapcalculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ def test_neighborhoods(self):
344344
class TestOverlapCalculatorObjCryst(unittest.TestCase):
345345

346346
@pytest.fixture(autouse=True)
347-
def _check_periodictable(self, has_pyobjcryst, _msg_nopyobjcryst):
347+
def _check_pyobjcryst(self, has_pyobjcryst, _msg_nopyobjcryst):
348348
if not has_pyobjcryst:
349349
pytest.skip(_msg_nopyobjcryst)
350350

tests/test_pdfcalcobjcryst.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def _makePDFCalculator(crst, cfgdict):
6262
class TestPDFCalcObjcryst(unittest.TestCase):
6363

6464
@pytest.fixture(autouse=True)
65-
def _check_periodictable(self, has_pyobjcryst, _msg_nopyobjcryst):
65+
def _check_pyobjcryst(self, has_pyobjcryst, _msg_nopyobjcryst):
6666
if not has_pyobjcryst:
6767
pytest.skip(_msg_nopyobjcryst)
6868

tests/test_sfaverage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def test_fromComposition(self):
7979
class TestSFAverageObjCryst(unittest.TestCase):
8080

8181
@pytest.fixture(autouse=True)
82-
def _check_periodictable(self, has_pyobjcryst, _msg_nopyobjcryst):
82+
def _check_pyobjcryst(self, has_pyobjcryst, _msg_nopyobjcryst):
8383
if not has_pyobjcryst:
8484
pytest.skip(_msg_nopyobjcryst)
8585

tests/test_structureadapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def test_nosymmetry_pickling(self):
286286
class TestPyObjCrystAdapter(unittest.TestCase):
287287

288288
@pytest.fixture(autouse=True)
289-
def _check_periodictable(self, has_pyobjcryst, _msg_nopyobjcryst):
289+
def _check_pyobjcryst(self, has_pyobjcryst, _msg_nopyobjcryst):
290290
if not has_pyobjcryst:
291291
pytest.skip(_msg_nopyobjcryst)
292292

0 commit comments

Comments
 (0)