diff options
| author | Chris McDonough <chrism@plope.com> | 2011-07-15 10:18:57 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-07-15 10:18:57 -0400 |
| commit | d8b932c53f2f5023d4e9e79116b853cb00035cb6 (patch) | |
| tree | 8f3dbb19a355f1b7aa477db0353634053bacd94e | |
| parent | 049e0e76ead84806d8033b3de75dd037434f7637 (diff) | |
| download | pyramid-d8b932c53f2f5023d4e9e79116b853cb00035cb6.tar.gz pyramid-d8b932c53f2f5023d4e9e79116b853cb00035cb6.tar.bz2 pyramid-d8b932c53f2f5023d4e9e79116b853cb00035cb6.zip | |
silence coverage warning
| -rw-r--r-- | pyramid/tests/test_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
