Browse Source

Fixed a testcase

pull/1638/head
Armin Ronacher 15 years ago
parent
commit
b26aeba972
  1. 3
      tests/flask_tests.py

3
tests/flask_tests.py

@ -614,7 +614,8 @@ class LoggingTestCase(unittest.TestCase):
with catch_stderr() as err:
rv = c.get('/')
out = err.getvalue()
assert 'WARNING in flask_tests, flask_tests.py' in out
assert 'WARNING in flask_tests,' in out
assert 'flask_tests.py' in out
assert 'the standard library is dead' in out
with catch_stderr() as err:

Loading…
Cancel
Save