diff options
Diffstat (limited to 'test/pacman/tests/upgrade059.py')
-rw-r--r-- | test/pacman/tests/upgrade059.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pacman/tests/upgrade059.py b/test/pacman/tests/upgrade059.py index 9cd9f1f0..26a5810b 100644 --- a/test/pacman/tests/upgrade059.py +++ b/test/pacman/tests/upgrade059.py @@ -18,7 +18,7 @@ self.addpkg(p2) p3 = pmpkg("pkg3", "1.0-2") self.addpkg(p3) -self.args = "-U %s" % " ".join([p.filename() for p in p2, p3]) +self.args = "-U %s" % " ".join([p.filename() for p in (p2, p3)]) self.addrule("PACMAN_RETCODE=1") self.addrule("PKG_EXIST=pkg1") |