Remove duplicate key from dictionary

In test_data_passed_properly_through_headers() method[1],
'name' key is passed twice in the fixture dictionary.

[1]: glance/tests/unit/common/test_wsgi.py

Co-Author: Abhishek Kekane <abhishek.kekane@nttdata.com>

Change-Id: I7571b5b6f47e0b3afcb1ebc386001a32e83d0d9d
Closes-Bug: #1482129
This commit is contained in:
Supalerk Jivorasetkul 2015-08-07 13:10:22 +09:00 committed by Abhishek Kekane
parent c8c94cb50b
commit 8538350284
1 changed files with 1 additions and 2 deletions

View File

@ -627,8 +627,7 @@ class TestHelpers(test_utils.BaseTestCase):
"""
Verifies that data is the same after being passed through headers
"""
fixture = {'name': 'fake public image',
'is_public': True,
fixture = {'is_public': True,
'deleted': False,
'name': None,
'size': 19,