diff --git a/tests/vasp/test_handlers.py b/tests/vasp/test_handlers.py index 8e6a290f..f78ec588 100644 --- a/tests/vasp/test_handlers.py +++ b/tests/vasp/test_handlers.py @@ -105,12 +105,6 @@ def test_subspace(self) -> None: assert dct["actions"] == [{"action": {"_set": {"PREC": "Accurate"}}, "dict": "INCAR"}] def test_check_correct(self) -> None: - handler = VaspErrorHandler("vasp.teterror") - handler.check() - dct = handler.correct() - assert dct["errors"] == ["tet"] - assert dct["actions"] == [{"action": {"_set": {"kpoints": ((10, 2, 2),)}}, "dict": "KPOINTS"}] - handler = VaspErrorHandler("vasp.teterror") handler.check() dct = handler.correct()