Merge "Remove redundant data copying in tests"

This commit is contained in:
Jenkins 2016-03-10 09:40:36 +00:00 committed by Gerrit Code Review
commit 291b8a0644
1 changed files with 2 additions and 2 deletions

View File

@ -400,7 +400,7 @@ class TestProcessNode(BaseTest):
CONF.set_override('store_data', 'swift', 'processing')
swift_conn = swift_mock.return_value
name = 'inspector_data-%s' % self.uuid
expected = self.data.copy()
expected = self.data
self.call()
@ -438,7 +438,7 @@ class TestProcessNode(BaseTest):
'value': name,
'op': 'add'}
)
expected = self.data.copy()
expected = self.data
self.call()