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 2022/05/10 22:18:49 UTC

[libcloud] 04/05: 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 fdef440289fbf381a0c97cf9b697ae2ca9780d82
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Wed May 11 00:14:53 2022 +0200

    Fix failing test.
---
 libcloud/test/compute/test_ec2.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libcloud/test/compute/test_ec2.py b/libcloud/test/compute/test_ec2.py
index 8f676cb19..b09fa0aa5 100644
--- a/libcloud/test/compute/test_ec2.py
+++ b/libcloud/test/compute/test_ec2.py
@@ -156,7 +156,7 @@ class EC2Tests(LibcloudTestCase, TestCaseMixin):
         self.assertEqual(driver.signature_version, "4")
 
         driver = EC2NodeDriver(*EC2_PARAMS, region="af-south-1")
-        self.assertEqual(driver.signature_version, "2")
+        self.assertEqual(driver.signature_version, "4")
 
         driver = EC2NodeDriver(*EC2_PARAMS, region="af-south-1", signature_version="4")
         self.assertEqual(driver.signature_version, "4")