Remove superfluous variable assignment statements

wait and interval are already defaulted in the function signature

Change-Id: I66317a24f8327c464343ac13fc0126c34915eeda
This commit is contained in:
Kyrylo Romanenko 2016-03-21 19:34:14 +02:00 committed by Steve Martinelli
parent f9f6abe564
commit 526f2f9f77

@ -87,8 +87,6 @@ class ServerTests(test.TestCase):
def wait_for(self, desired, wait=120, interval=5, failures=['ERROR']):
# TODO(thowe): Add a server wait command to osc
status = "notset"
wait = 120
interval = 5
total_sleep = 0
opts = self.get_show_opts(['status'])
while total_sleep < wait: