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/inspector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/inspector.py') diff --git a/tests/inspector.py b/tests/inspector.py index db7db39e..c8fb00f9 100644 --- a/tests/inspector.py +++ b/tests/inspector.py @@ -20,7 +20,7 @@ import nova_force_down class DoctorInspectorSample(object): - nova_api_version = 2.11 + nova_api_version = '2.11' def __init__(self): self.nova = novaclient.Client(self.nova_api_version, -- cgit 1.2.3-korg