diff options
author | Manuel Buil <manuel.buil@ericsson.com> | 2016-07-21 14:54:08 +0200 |
---|---|---|
committer | Manuel Buil <manuel.buil@ericsson.com> | 2016-07-21 14:54:08 +0200 |
commit | aa8bf9eeb40d8c11a0f420bec46bcebeda5a8224 (patch) | |
tree | 225855ca090169d41c5ebe750a255615773ac34e | |
parent | 316a5c029e785bdc25efbbbf6fa093502bda3094 (diff) |
Bug fix in SFC test case
It was importing novaclientv2 and it should import version 1
Change-Id: I446f1a3808b9c13f9e28b42d4ced93e729a13eb2
Signed-off-by: Manuel Buil <manuel.buil@ericsson.com>
-rw-r--r-- | yardstick/benchmark/scenarios/networking/sfc_openstack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/scenarios/networking/sfc_openstack.py b/yardstick/benchmark/scenarios/networking/sfc_openstack.py index 2a5fbde1c..d1d45d8e4 100644 --- a/yardstick/benchmark/scenarios/networking/sfc_openstack.py +++ b/yardstick/benchmark/scenarios/networking/sfc_openstack.py @@ -1,5 +1,5 @@ import os -from novaclient.v2 import client as novaclient +from novaclient import client as novaclient from neutronclient.v2_0 import client as neutronclient |