summaryrefslogtreecommitdiffstats
path: root/nova/tests/conductor
diff options
context:
space:
mode:
authorChris Behrens <cbehrens@codestud.com>2013-05-31 20:04:52 +0000
committerChris Behrens <cbehrens@codestud.com>2013-05-31 20:21:17 +0000
commit8998cbe3cb89dcbdf0576693cac903d6e6441b6e (patch)
tree0243df87555bc4ec63678a0ccb6ce010afd01df3 /nova/tests/conductor
parent9ca2673bef0d6a883df673fb6531640c8f268a44 (diff)
downloadnova-8998cbe3cb89dcbdf0576693cac903d6e6441b6e.tar.gz
nova-8998cbe3cb89dcbdf0576693cac903d6e6441b6e.tar.xz
nova-8998cbe3cb89dcbdf0576693cac903d6e6441b6e.zip
Remove unused launch_time from instance
'launch_time' is passed around as part of instance properties when an instance is being built, however it is not a column in the DB nor is it even used anywhere. It was also unnecessarily copied around in various tests. This patch removes all references to it. Change-Id: I2300cd6b8539d15bbcd35ab4c00ab99d4be13eb5
Diffstat (limited to 'nova/tests/conductor')
-rw-r--r--nova/tests/conductor/test_conductor.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/nova/tests/conductor/test_conductor.py b/nova/tests/conductor/test_conductor.py
index 28d0074f2..637596fc5 100644
--- a/nova/tests/conductor/test_conductor.py
+++ b/nova/tests/conductor/test_conductor.py
@@ -76,7 +76,6 @@ class _BaseTestCase(object):
inst['vm_state'] = vm_states.ACTIVE
inst['image_ref'] = FAKE_IMAGE_REF
inst['reservation_id'] = 'r-fakeres'
- inst['launch_time'] = '10'
inst['user_id'] = self.user_id
inst['project_id'] = self.project_id
inst['host'] = 'fake_host'