Chris McDonough
2011-07-15 d8b932c53f2f5023d4e9e79116b853cb00035cb6
silence coverage warning
1 files modified
2 ■■■ changed files
pyramid/tests/test_config.py 2 ●●● patch | view | raw | blame | history
pyramid/tests/test_config.py
@@ -5497,7 +5497,7 @@
    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