Fixing import order

changes/87/83087/1
Josh Gachnang 9 years ago
parent ececa3bce2
commit fc043dd1d3

@ -18,6 +18,10 @@ import random
import threading
import time
import pkg_resources
from stevedore import driver
from wsgiref import simple_server
from ironic_python_agent.api import app
from ironic_python_agent import base
from ironic_python_agent import encoding
@ -27,10 +31,6 @@ from ironic_python_agent import ironic_api_client
from ironic_python_agent.openstack.common import log
from ironic_python_agent import utils
import pkg_resources
from stevedore import driver
from wsgiref import simple_server
def _time():
"""Wraps time.time() for simpler testing."""

@ -16,11 +16,11 @@ limitations under the License.
import base64
from ironic_python_agent import utils
import json
import os
from ironic_python_agent import utils
class ConfigDriveWriter(object):
def __init__(self):

@ -18,16 +18,16 @@ import json
import time
import unittest
import mock
import pkg_resources
from wsgiref import simple_server
from ironic_python_agent import agent
from ironic_python_agent import base
from ironic_python_agent import encoding
from ironic_python_agent import errors
from ironic_python_agent import hardware
import mock
import pkg_resources
from wsgiref import simple_server
EXPECTED_ERROR = RuntimeError('command execution failed')

Loading…
Cancel
Save