summaryrefslogtreecommitdiffstats
path: root/pactest
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2007-03-01 07:54:05 +0100
committerAaron Griffin <aaron@archlinux.org>2007-03-01 07:54:05 +0100
commit6075b677fcdeccf2b39ebbd4a089b4ebe016a62e (patch)
treeb4e492aecb1b89a042756651832a65a7f19ed611 /pactest
parent4aca4980a7ddf66c27feacae96c6153d993c65c9 (diff)
downloadpacman-6075b677fcdeccf2b39ebbd4a089b4ebe016a62e.tar.gz
pacman-6075b677fcdeccf2b39ebbd4a089b4ebe016a62e.tar.xz
* REQUIREDBY test was reversed (pkg3 requiredby pkg1, not pkg1 requiredby pkg3)
Diffstat (limited to 'pactest')
-rw-r--r--pactest/tests/upgrade056.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pactest/tests/upgrade056.py b/pactest/tests/upgrade056.py
index db34266b..8419731c 100644
--- a/pactest/tests/upgrade056.py
+++ b/pactest/tests/upgrade056.py
@@ -1,4 +1,4 @@
-self.description = "Upgrade a package that removes a provide but another package still does"
+self.description = "Upgrade a package that removes a provide but another package still provides it"
lp1 = pmpkg("pkg1")
lp1.depends = ["imaginary"]
@@ -22,5 +22,5 @@ self.addrule("PACMAN_RETCODE=0")
self.addrule("PKG_EXIST=pkg1")
self.addrule("PKG_VERSION=pkg2|1.0-2")
self.addrule("PKG_EXIST=pkg3")
-self.addrule("!PKG_REQUIREDBY=pkg1|pkg2")
-self.addrule("PKG_REQUIREDBY=pkg1|pkg3")
+self.addrule("!PKG_REQUIREDBY=pkg2|pkg1")
+self.addrule("PKG_REQUIREDBY=pkg3|pkg1")