From d8b932c53f2f5023d4e9e79116b853cb00035cb6 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Fri, 15 Jul 2011 10:18:57 -0400 Subject: silence coverage warning --- pyramid/tests/test_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyramid/tests/test_config.py b/pyramid/tests/test_config.py index 489134f00..a50434f7e 100644 --- a/pyramid/tests/test_config.py +++ b/pyramid/tests/test_config.py @@ -5497,7 +5497,7 @@ def assert_similar_datetime(one, two): for attr in ('year', 'month', 'day', 'hour', 'minute'): one_attr = getattr(one, attr) two_attr = getattr(two, attr) - if not one_attr == two_attr: + if not one_attr == two_attr: # pragma: no cover raise AssertionError('%r != %r in %s' % (one_attr, two_attr, attr)) from pyramid.interfaces import IResponse -- cgit v1.2.3