Skip to content

Commit f3eb898

Browse files
committed
rephrase message when test is cancelled
Reprase the CANCEL message to Cannot install package: <pkg> Signed-off-by: Vaishnavi Bhat <vaishnavi@linux.vnet.ibm.com>
1 parent ac7a7d4 commit f3eb898

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

io/net/tcpdump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def setUp(self):
102102
pkgs = ['tcpdump', 'flex', 'bison', 'gcc', 'gcc-c++', 'nmap']
103103
for pkg in pkgs:
104104
if not smm.check_installed(pkg) and not smm.install(pkg):
105-
self.cancel("%s package Can not install" % pkg)
105+
self.cancel("Cannot install package: %s" % pkg)
106106
if detected_distro.name == "SuSE":
107107
self.nmap = os.path.join(self.teststmpdir, 'nmap')
108108
nmap_download = self.params.get("nmap_download", default="https:"

0 commit comments

Comments
 (0)