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

* This test was off. pactest doesn't do all the DB work, so we need to manually

add the "requiredby" information that libalpm would have written.
  Now it succeeds.
This commit is contained in:
Aaron Griffin 2007-02-27 08:29:02 +00:00
parent f2ade9ab0d
commit 67ff30b869

View File

@ -6,6 +6,7 @@ self.addpkg2db("local", lp1)
lp2 = pmpkg("pkg2") lp2 = pmpkg("pkg2")
lp2.provides = ["imaginary", "real"] lp2.provides = ["imaginary", "real"]
lp2.requiredby = [ "pkg1" ]
self.addpkg2db("local", lp2) self.addpkg2db("local", lp2)
p = pmpkg("pkg2", "1.0-2") p = pmpkg("pkg2", "1.0-2")