From d9fab8e2edd51deb178ffa37619dad64b7de743d Mon Sep 17 00:00:00 2001 From: amkrajewski Date: Mon, 9 Oct 2023 13:04:28 -0400 Subject: [PATCH] - small adjustment to the pysipfenn Calculator tests based on small aesthetic adjustment --- pysipfenn/tests/test_pysipfenn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pysipfenn/tests/test_pysipfenn.py b/pysipfenn/tests/test_pysipfenn.py index 80d7e9b..0b007a6 100644 --- a/pysipfenn/tests/test_pysipfenn.py +++ b/pysipfenn/tests/test_pysipfenn.py @@ -71,7 +71,7 @@ def testFromPOSCAR_KS2022(self): with self.subTest(msg='Test Calculator printout after predictions'): printOut = str(self.c) - self.assertIn('PySIPFENN Calculator Object', printOut) + self.assertIn('pySIPFENN Calculator Object', printOut) self.assertIn('Models are located in', printOut) self.assertIn('Loaded Networks', printOut) self.assertIn('Last files selected as input', printOut) @@ -206,7 +206,7 @@ def test_CalculatorPrint(self): '''Test that the Calculator.__str__() method returns the correcttly formatted string after being initialized but before predictions''' printOut = str(self.c) - self.assertIn('PySIPFENN Calculator Object', printOut) + self.assertIn('pySIPFENN Calculator Object', printOut) self.assertIn('Models are located in', printOut) self.assertIn('Loaded Networks', printOut)