diff options
author | ahothan <ahothan@cisco.com> | 2018-10-19 15:11:36 -0700 |
---|---|---|
committer | ahothan <ahothan@cisco.com> | 2018-10-19 15:11:36 -0700 |
commit | e59c1b065700f776f92111cb29bdd28a0504adb3 (patch) | |
tree | c04ca5e2420c15b4676827ed346c6e5014b99fd4 /test/test_chains.py | |
parent | c0ef57f8ec086c07053d529510992c869c30c9d2 (diff) |
NFVBENCH-104 Specifying a hypervisor does not work2.0.1
Need to add a leading ":" to the hypervisor name
Change-Id: Id5d02e14a73a2e278848ffccd7a0c60165dbf509
Signed-off-by: ahothan <ahothan@cisco.com>
Diffstat (limited to 'test/test_chains.py')
-rw-r--r-- | test/test_chains.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_chains.py b/test/test_chains.py index e952eb8..36a29dd 100644 --- a/test/test_chains.py +++ b/test/test_chains.py @@ -298,7 +298,7 @@ def test_placer_user_az(): def test_placer_user_hyp(): """Test placement when user provides a hypervisor.""" - check_placer(None, 'comp1', 'comp1') + check_placer(None, 'comp1', ':comp1') check_placer('nova', 'comp1', 'nova:comp1', resolved=True) check_placer(None, 'nova:comp1', 'nova:comp1', resolved=True) # hyp overrides az |