* Reverted version number. * Removed MockHttp methods as requested on the PR. Closes #1100
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/6e1c4065 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/6e1c4065 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/6e1c4065 Branch: refs/heads/trunk Commit: 6e1c40654e800a6794142e4ac04629440576e475 Parents: c07548e Author: Lucas Di Pentima <[email protected]> Authored: Thu Aug 31 15:26:03 2017 -0300 Committer: Anthony Shaw <[email protected]> Committed: Fri Sep 1 22:07:08 2017 +1000 ---------------------------------------------------------------------- libcloud/__init__.py | 2 +- libcloud/test/compute/test_ec2.py | 8 -------- 2 files changed, 1 insertion(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/6e1c4065/libcloud/__init__.py ---------------------------------------------------------------------- diff --git a/libcloud/__init__.py b/libcloud/__init__.py index 773c03f..24d4a68 100644 --- a/libcloud/__init__.py +++ b/libcloud/__init__.py @@ -36,7 +36,7 @@ __all__ = [ '__version__', 'enable_debug' ] -__version__ = '2.2.0.dev1' +__version__ = '2.2.0' def enable_debug(fo): http://git-wip-us.apache.org/repos/asf/libcloud/blob/6e1c4065/libcloud/test/compute/test_ec2.py ---------------------------------------------------------------------- diff --git a/libcloud/test/compute/test_ec2.py b/libcloud/test/compute/test_ec2.py index 2766fc7..f8a2687 100644 --- a/libcloud/test/compute/test_ec2.py +++ b/libcloud/test/compute/test_ec2.py @@ -1526,10 +1526,6 @@ class EC2MockHttp(MockHttp): body = self.fixtures.load('modify_snapshot_attribute.xml') return (httplib.OK, body, {}, httplib.responses[httplib.OK]) - def _idempotent_CreateTags(self, method, url, body, headers): - body = self.fixtures.load('create_tags.xml') - return (httplib.OK, body, {}, httplib.responses[httplib.OK]) - def _CreateVolume(self, method, url, body, headers): body = self.fixtures.load('create_volume.xml') return (httplib.OK, body, {}, httplib.responses[httplib.OK]) @@ -1741,10 +1737,6 @@ class EucMockHttp(EC2MockHttp): headers): return self._RunInstances(method, url, body, headers) - def _services_Eucalyptus_CreateTags(self, method, url, body, - headers): - return self._CreateTags(method, url, body, headers) - def _services_Eucalyptus_DescribeInstanceTypes(self, method, url, body, headers): body = self.fixtures.load('describe_instance_types.xml')
