Remove redundant data copying in tests

This is a follow-up to commit e86cec3b07.

Change-Id: Ibded6760b0da02c69958a257f5c00a8e8ee68653
This commit is contained in:
Dmitry Tantsur 2016-03-08 15:24:25 +01:00
parent 2ff09ffcce
commit eb9891b401
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()