From 2935e55c5029f2a99ebcb4ec6bed78fbd1225872 Mon Sep 17 00:00:00 2001 From: "Andrew S. Rosen" Date: Wed, 12 Jun 2024 10:41:39 -0700 Subject: [PATCH] Update test_handlers.py --- tests/vasp/test_handlers.py | 6 ------ 1 file changed, 6 deletions(-) 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()