summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJeremy Heiner <scalaprotractor@gmail.com>2013-10-09 15:48:09 +0200
committerAllan McRae <allan@archlinux.org>2013-10-14 05:01:15 +0200
commit1bb0085dfea1fbda0fc7715a064cbac193d381e2 (patch)
treea83dc9611ad68d4de9fe7eee75de715d677ebbd4 /test
parent31a55df3d9750b2cdb21d436c4bf3ffbf24c4f4d (diff)
downloadpacman-1bb0085dfea1fbda0fc7715a064cbac193d381e2.tar.gz
pacman-1bb0085dfea1fbda0fc7715a064cbac193d381e2.tar.xz
Jettison the truncation of the display of pmrules.
The truncation helped back when the test output appeared when run via make. But now "make check" logs that output, and it makes little sense to log the truncated rules. Signed-off-by: Jeremy Heiner <ScalaProtractor at gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'test')
-rw-r--r--test/pacman/pmrule.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/pacman/pmrule.py b/test/pacman/pmrule.py
index c97a1584..cfcbb6b9 100644
--- a/test/pacman/pmrule.py
+++ b/test/pacman/pmrule.py
@@ -32,9 +32,7 @@ class pmrule(object):
self.result = 0
def __str__(self):
- if len(self.rule) <= 40:
- return self.rule
- return self.rule[:37] + '...'
+ return self.rule
def check(self, test):
"""