Bläddra i källkod

fix error in unit test for log class

ogert 4 år sedan
förälder
incheckning
957402da9c
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      cdplib/unit_tests/TestLog.py

+ 1 - 1
cdplib/unit_tests/TestLog.py

@@ -13,7 +13,7 @@ class TestLog(unittest.TestCase):
 
     def test_A_Log_Colors(self):
         self._log.info('Test Starts Here')
-        self._log.info(self._log.header + "Header")
+        self._log.info(self._log.magenta + "Header")
         self._log.info(self._log.blue + "Blue")
         self._log.info( self._log.green + "Green")
         self._log.info(self._log.yellow + "yellow")