From 2afd8b1478331f7ba35f6a38ad3e5fe4329044a8 Mon Sep 17 00:00:00 2001 From: Carlos Goncalves Date: Tue, 9 Aug 2016 20:47:27 +0200 Subject: Change type of nova_api_version from float to str Recently functest container had its python requests lib updated to version 2.8.0 and it no longer supports passing in header values of float type. Change-Id: I31da351d7f5c7c1c3ff5121b7b000f3bab1d76bf Signed-off-by: Carlos Goncalves --- tests/clean.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/clean.py') diff --git a/tests/clean.py b/tests/clean.py index af966aed..f8394055 100644 --- a/tests/clean.py +++ b/tests/clean.py @@ -14,7 +14,7 @@ import os import novaclient.client as novaclient -nova_api_version = 2.11 +nova_api_version = '2.11' def enable_compute_host(hostname): self.nova = novaclient.Client(self.nova_api_version, -- cgit 1.2.3-korg