Hide Forgot
Description of problem: This is a very low priority nitpick. Log of beaker test contain two typos: Duplicit character ':' aflter words 'Installed' and 'Distro'. Version-Release number of selected component (if applicable): beakerlib-1.11-2.fc24 How reproducible: Always Steps to Reproduce: 1. $make run Actual results: ... :: [ LOG ] :: Installed: : make-4.1-5.fc24.x86_64 ... :: [ LOG ] :: Distro: : Fedora release 24 (Twenty Four) ... Expected results: ... :: [ LOG ] :: Installed : make-4.1-5.fc24.x86_64 ... :: [ LOG ] :: Distro : Fedora release 24 (Twenty Four) ... Additional info: diff --git a/src/python/journalling.py b/src/python/journalling.py index 324a3ad..3f41941 100755 --- a/src/python/journalling.py +++ b/src/python/journalling.py @@ -231,9 +231,9 @@ class Journal(object): elif node.nodeName == "testname": Journal.printLog("Test name : %s" % Journal.__childNodeValue(node, 0)) elif node.nodeName == "pkgdetails": - Journal.printLog("Installed: : %s" % Journal.__childNodeValue(node, 0)) + Journal.printLog("Installed : %s" % Journal.__childNodeValue(node, 0)) elif node.nodeName == "release": - Journal.printLog("Distro: : %s" % Journal.__childNodeValue(node, 0)) + Journal.printLog("Distro : %s" % Journal.__childNodeValue(node, 0)) elif node.nodeName == "starttime": Journal.printLog("Test started : %s" % Journal.__childNodeValue(node, 0)) elif node.nodeName == "endtime":
fixed by https://git.fedorahosted.org/cgit/beakerlib.git/commit/?id=b580f941e8100d96022b6da2cf4400cb847ce55b