diff options
author | Dan McGee <dan@archlinux.org> | 2007-02-28 16:37:24 +0000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-02-28 16:37:24 +0000 |
commit | 13e21110459aaf99dd739802c2b07b3d5b9e2a68 (patch) | |
tree | e8df3fa922cbd076185e56f1cd0e3a665c17b58d /pactest/pmrule.py | |
parent | bdac9105892dae8b74952f86300e6161363b93d4 (diff) | |
download | pacman-13e21110459aaf99dd739802c2b07b3d5b9e2a68.tar.xz |
* Unifying placement of REPLACES in desc file, as pacman2 does. We'll worry
about bigger DB changes later, but lets not screw anything up for release.
* Removed some weird uses of "not ... ==" usage in pactest- correct me if I'm
wrong, but isn't "!=" a lot more clean and concise?
* Print description of failed tests in the pactest summary. This could get
dirty with a lot of failed tests though, so watch out.
Diffstat (limited to 'pactest/pmrule.py')
-rwxr-xr-x | pactest/pmrule.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pactest/pmrule.py b/pactest/pmrule.py index 33a29f0e..dc04cf1a 100755 --- a/pactest/pmrule.py +++ b/pactest/pmrule.py @@ -86,7 +86,7 @@ class pmrule: if not value in newpkg.requiredby: success = 0 elif case == "REASON": - if not newpkg.reason == int(value): + if newpkg.reason != int(value): success = 0 elif case == "FILES": if not value in newpkg.files: |