summaryrefslogtreecommitdiffstats
path: root/pactest/tests/query002.py
diff options
context:
space:
mode:
authorChantry Xavier <shiningxc@gmail.com>2007-12-22 20:32:57 +0100
committerDan McGee <dan@archlinux.org>2007-12-29 02:56:29 +0100
commit73aa6b610e22377a40c567156b610319ffb9e024 (patch)
tree2aa6419e7ffb907a4bc68c94f2b79c611b20c1b4 /pactest/tests/query002.py
parent630541a72e2ca041d2fb4401b374670134b12c3d (diff)
downloadpacman-73aa6b610e22377a40c567156b610319ffb9e024.tar.gz
pacman-73aa6b610e22377a40c567156b610319ffb9e024.tar.xz
fix two broken pactests because of date localization.
query002 and sync1100 had PACMAN_OUTPUT rules that looked at the build/install date (localized). Instead of looking at the month name, it will now check the year, which should be safer. I also had to add another pactest (query005) for keeping the same coverage. Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Diffstat (limited to 'pactest/tests/query002.py')
-rw-r--r--pactest/tests/query002.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/pactest/tests/query002.py b/pactest/tests/query002.py
index c6a6c7d3..7d943644 100644
--- a/pactest/tests/query002.py
+++ b/pactest/tests/query002.py
@@ -7,9 +7,8 @@ p.groups = ["foo"]
p.url = "http://www.archlinux.org"
p.license = "GPL2"
p.arch = "i686"
-# test both old style and new style dates
+# test old style date
p.builddate = "Mon Oct 1 01:40:21 2007 UTC"
-p.installdate = "1196640127"
p.packager = "Arch Linux"
self.addpkg2db("local", p)
@@ -19,5 +18,4 @@ self.args = "-Qi %s" % p.name
self.addrule("PACMAN_RETCODE=0")
self.addrule("PACMAN_OUTPUT=%s" % p.name)
self.addrule("PACMAN_OUTPUT=%s" % p.desc)
-self.addrule("PACMAN_OUTPUT=Oct")
-self.addrule("PACMAN_OUTPUT=Dec")
+self.addrule("PACMAN_OUTPUT=2007")