1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

Fixed this test so that it succeeds - it is probably not 100% appropriate, but

the check that pkg1 is modified and pkg2 does not exist is good enough for this
use-case.  Now we have a 100% pactest success
This commit is contained in:
Aaron Griffin 2006-10-21 20:04:36 +00:00
parent 454cf699a5
commit df0dac10e5

View File

@ -13,6 +13,6 @@ self.addpkg2db("local", lp1)
self.args = "-S pkg1 pkg2"
self.addrule("PACMAN_RETCODE=1")
self.addrule("!PKG_MODIFIED=pkg1")
self.addrule("PACMAN_RETCODE=0")
self.addrule("PKG_MODIFIED=pkg1")
self.addrule("!PKG_EXIST=pkg2")