diff options
author | Dan McGee <dan@archlinux.org> | 2007-02-28 17:37:24 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-02-28 17:37:24 +0100 |
commit | 13e21110459aaf99dd739802c2b07b3d5b9e2a68 (patch) | |
tree | e8df3fa922cbd076185e56f1cd0e3a665c17b58d /pactest/pmfile.py | |
parent | bdac9105892dae8b74952f86300e6161363b93d4 (diff) | |
download | pacman-13e21110459aaf99dd739802c2b07b3d5b9e2a68.tar.gz 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/pmfile.py')
-rwxr-xr-x | pactest/pmfile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pactest/pmfile.py b/pactest/pmfile.py index 71a0cd7c..99b14a8b 100755 --- a/pactest/pmfile.py +++ b/pactest/pmfile.py @@ -52,8 +52,8 @@ class pmfile: vprint("\t\told: %s / %s" % (self.checksum, self.mtime)) vprint("\t\tnew: %s / %s" % (checksum, mtime)) - if not self.checksum == checksum \ - or not (self.mtime[1], self.mtime[2]) == (mtime[1], mtime[2]): + if self.checksum != checksum \ + or (self.mtime[1], self.mtime[2]) != (mtime[1], mtime[2]): retval = 1 return retval |