summaryrefslogtreecommitdiffstats
path: root/tests/test_ssl.py
diff options
context:
space:
mode:
authorZhongyue Luo <lzyeval@gmail.com>2012-07-03 00:11:57 +0800
committerZhongyue Luo <lzyeval@gmail.com>2012-07-03 00:21:39 +0800
commita7417e26d8b7cdf3decc7ee70a736789bafc3a83 (patch)
tree7b4cd62628e7b6b89060da55a395cbcfd0288886 /tests/test_ssl.py
parentb45c252bca75d55fc720f354c48f5084c2528582 (diff)
downloadkeystone-a7417e26d8b7cdf3decc7ee70a736789bafc3a83.tar.gz
keystone-a7417e26d8b7cdf3decc7ee70a736789bafc3a83.tar.xz
keystone-a7417e26d8b7cdf3decc7ee70a736789bafc3a83.zip
Reorder test imports by full import path
Fixes bug #1020182 Reorder imports of modules in keystone/tests. Change-Id: I2ff61dd3d9486281b4a2a889e4dc8b9105c87d49
Diffstat (limited to 'tests/test_ssl.py')
-rw-r--r--tests/test_ssl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_ssl.py b/tests/test_ssl.py
index 7e36b4d6..8dc8a214 100644
--- a/tests/test_ssl.py
+++ b/tests/test_ssl.py
@@ -15,12 +15,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-import os
import httplib
+import os
import ssl
-from keystone import test
from keystone import config
+from keystone import test
CONF = config.CONF