diff options
Diffstat (limited to 'test/test_collections.py')
| -rw-r--r-- | test/test_collections.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_collections.py b/test/test_collections.py index 0b365120..9f7ce9a7 100644 --- a/test/test_collections.py +++ b/test/test_collections.py @@ -302,6 +302,7 @@ class TestHTTPHeaderDict(unittest.TestCase): hdict = {'Content-Length': '0', 'Content-type': 'text/plain', 'Server': 'TornadoServer/1.2.3'} h = dict(HTTPHeaderDict(hdict).items()) self.assertEqual(hdict, h) + self.assertEqual(hdict, dict(HTTPHeaderDict(hdict))) def test_string_enforcement(self): # This currently throws AttributeError on key.lower(), should probably be something nicer |
