You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/05/06 20:26:53 UTC

svn commit: r941846 - /incubator/libcloud/trunk/test/test_softlayer.py

Author: pquerna
Date: Thu May  6 18:26:52 2010
New Revision: 941846

URL: http://svn.apache.org/viewvc?rev=941846&view=rev
Log:
Improve SoftLayer test cases based on pyflakes warnings

Modified:
    incubator/libcloud/trunk/test/test_softlayer.py

Modified: incubator/libcloud/trunk/test/test_softlayer.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/test/test_softlayer.py?rev=941846&r1=941845&r2=941846&view=diff
==============================================================================
--- incubator/libcloud/trunk/test/test_softlayer.py (original)
+++ incubator/libcloud/trunk/test/test_softlayer.py Thu May  6 18:26:52 2010
@@ -16,14 +16,15 @@
 
 import httplib
 import unittest
+import sys
+
 from xml.etree import ElementTree as ET
 import xmlrpclib
 
-from libcloud.drivers.softlayer import SoftLayerProxy, SoftLayerNodeDriver as SoftLayer
-from libcloud.base import Node, NodeImage, NodeSize
+from libcloud.drivers.softlayer import SoftLayerNodeDriver as SoftLayer
 from libcloud.types import NodeState
 
-from test import MockHttp, TestCaseMixin
+from test import MockHttp
 from test.file_fixtures import FileFixtures
 
 from secrets import SOFTLAYER_USER, SOFTLAYER_APIKEY