You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2019/10/08 20:48:28 UTC

[libcloud] 07/08: Fix failing test.

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit f83775a9241c7b95a8ec08d19dee7d65a8dbce8a
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Tue Oct 8 22:43:11 2019 +0200

    Fix failing test.
---
 libcloud/test/compute/test_packet.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libcloud/test/compute/test_packet.py b/libcloud/test/compute/test_packet.py
index 8083a48..999185f 100644
--- a/libcloud/test/compute/test_packet.py
+++ b/libcloud/test/compute/test_packet.py
@@ -290,6 +290,10 @@ class PacketMockHttp(MockHttp):
         body = self.fixtures.load('plans.json')
         return (httplib.OK, body, {}, httplib.responses[httplib.OK])
 
+    def _projects_3d27fd13_0466_4878_be22_9a4b5595a3df_plans(self, method, url, body, headers):
+        body = self.fixtures.load('plans.json')
+        return (httplib.OK, body, {}, httplib.responses[httplib.OK])
+
     def _projects(self, method, url, body, headers):
         body = self.fixtures.load('projects.json')
         return (httplib.OK, body, {}, httplib.responses[httplib.OK])