Author: tomaz
Date: Sat Oct 8 21:18:57 2011
New Revision: 1180490
URL: http://svn.apache.org/viewvc?rev=1180490&view=rev
Log:
pep8.
Modified:
libcloud/trunk/test/dns/test_linode.py
Modified: libcloud/trunk/test/dns/test_linode.py
URL:
http://svn.apache.org/viewvc/libcloud/trunk/test/dns/test_linode.py?rev=1180490&r1=1180489&r2=1180490&view=diff
==============================================================================
--- libcloud/trunk/test/dns/test_linode.py (original)
+++ libcloud/trunk/test/dns/test_linode.py Sat Oct 8 21:18:57 2011
@@ -261,12 +261,11 @@ class LinodeMockHttp(MockHttp):
body = self.fixtures.load('get_zone_does_not_exist.json')
return (httplib.OK, body, {}, httplib.responses[httplib.OK])
- def _GET_RECORD_ZONE_DOES_NOT_EXIST_domain_resource_list(self, method,
url, body,
- headers):
+ def _GET_RECORD_ZONE_DOES_NOT_EXIST_domain_resource_list(self, method, url,
+ body, headers):
body = self.fixtures.load('get_record_does_not_exist.json')
return (httplib.OK, body, {}, httplib.responses[httplib.OK])
-
def _GET_RECORD_RECORD_DOES_NOT_EXIST_domain_list(self, method, url, body,
headers):
body = self.fixtures.load('get_zone.json')
@@ -278,7 +277,6 @@ class LinodeMockHttp(MockHttp):
body = self.fixtures.load('get_record_does_not_exist.json')
return (httplib.OK, body, {}, httplib.responses[httplib.OK])
-
def _domain_create(self, method, url, body, headers):
body = self.fixtures.load('create_domain.json')
return (httplib.OK, body, {}, httplib.responses[httplib.OK])