diff options
Diffstat (limited to 'test/pacman/tests/upgrade032.py')
-rw-r--r-- | test/pacman/tests/upgrade032.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pacman/tests/upgrade032.py b/test/pacman/tests/upgrade032.py index 85e048e0..6348a0f6 100644 --- a/test/pacman/tests/upgrade032.py +++ b/test/pacman/tests/upgrade032.py @@ -10,7 +10,7 @@ p2 = pmpkg("pkg2", "1.0-2") for p in p1, p2: self.addpkg(p) -self.args = "-U --asexplicit %s" % " ".join([p.filename() for p in p1, p2]) +self.args = "-U --asexplicit %s" % " ".join([p.filename() for p in (p1, p2)]) self.addrule("PACMAN_RETCODE=0") self.addrule("PKG_VERSION=pkg1|1.0-2") |