Skip to content

Commit cf5c9d0

Browse files
committed
Fix error message (it's not always the CE)
1 parent c6bb18d commit cf5c9d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osgtest/library/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ def skip_bad_if_more_than_one_installed(*packages):
421421
if rpm_is_installed(package):
422422
installed.append(package)
423423
if len(installed) > 1:
424-
raise osgunittest.BadSkipException('More than one installed of the ce: %s' % ' '.join(installed))
424+
raise osgunittest.BadSkipException('More than one installed of: %s' % ' '.join(installed))
425425

426426

427427
def skip_ok_unless_one_installed(*packages):

0 commit comments

Comments
 (0)