Skip to content

Commit 8615bdb

Browse files
committed
Actually just skip duplicates
1 parent 6c02695 commit 8615bdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osgtest/tests/special_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def test_02_install_packages(self):
5757
command += ['install', pkg]
5858

5959
retry_fail, _, stdout, _ = yum.retry_command(command)
60-
if retry_fail == '' and 'Nothing to do.' not in stdout: # the command succeeded
60+
if retry_fail == '': # the command succeeded
6161
id = yum.get_transaction_id()
6262
if id not in core.state['install.transaction_ids']:
6363
core.state['install.transaction_ids'].append(id)

0 commit comments

Comments
 (0)