diff options
| author | Barry Warsaw | 2012-03-06 11:57:17 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2012-03-06 11:57:17 -0500 |
| commit | 4ca5055eea7c521e620de8ceeff6fa538b7a0c0b (patch) | |
| tree | 63f24624049b82974c9302f4663ae1d4d2cd1146 /src/mailman/chains/tests/test_hold.py | |
| parent | e2526bfa5cb3338ac98f101f3020b54c002252dc (diff) | |
| download | mailman-4ca5055eea7c521e620de8ceeff6fa538b7a0c0b.tar.gz mailman-4ca5055eea7c521e620de8ceeff6fa538b7a0c0b.tar.zst mailman-4ca5055eea7c521e620de8ceeff6fa538b7a0c0b.zip | |
Diffstat (limited to 'src/mailman/chains/tests/test_hold.py')
| -rw-r--r-- | src/mailman/chains/tests/test_hold.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mailman/chains/tests/test_hold.py b/src/mailman/chains/tests/test_hold.py index 3c337a501..f2cd1dabf 100644 --- a/src/mailman/chains/tests/test_hold.py +++ b/src/mailman/chains/tests/test_hold.py @@ -45,10 +45,9 @@ class TestAutorespond(unittest.TestCase): def setUp(self): self._mlist = create_list('test@example.com') - # Python 2.7 has assertMultiLineEqual + # Python 2.7 has assertMultiLineEqual. Let this work without bounds. self.maxDiff = None - self.eq = getattr(self, 'assertMultiLineEqual', - getattr(self, 'assertEqual')) + self.eq = getattr(self, 'assertMultiLineEqual', self.assertEqual) def test_max_autoresponses_per_day(self): # The last one we sent was the last one we should send today. Instead |
