From 3e50ebf91338c031288cfa85032005a36d371b1f Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Mon, 6 May 2024 17:10:02 -0400 Subject: [PATCH] fix broken tests Signed-off-by: Jinzhe Zeng --- tests/database/test_db_vasp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/database/test_db_vasp.py b/tests/database/test_db_vasp.py index 514ef3fe2..45b289b87 100644 --- a/tests/database/test_db_vasp.py +++ b/tests/database/test_db_vasp.py @@ -111,7 +111,7 @@ def testEntry(self): Incar.from_dict(ret0.inputs["INCAR"]), Incar.from_dict(r0.inputs["INCAR"]) ) self.assertEqual( - str(r0.inputs["KPOINTS"]), str(Kpoints.from_dict(ret0.inputs["KPOINTS"])) + r0.inputs["KPOINTS"], Kpoints.from_dict(ret0.inputs["KPOINTS"]) ) self.assertEqual(ret0.inputs["POTCAR"], r0.inputs["POTCAR"].as_dict())