diff options
author | ahothan <ahothan@cisco.com> | 2018-10-10 23:20:44 -0700 |
---|---|---|
committer | ahothan <ahothan@cisco.com> | 2018-10-11 09:43:45 -0700 |
commit | cd455c418173a978f89bdbb83f79d15c5fa53e03 (patch) | |
tree | 1a63ccfa078e316ea9df9e66aa8bb6397aa989fb /test/test_nfvbench.py | |
parent | 391dcf76fefb747888a3411ae3b8df7b1ad26685 (diff) |
Perform strict src mac check on ensure end to end
This is required when shared net is used and there are more VMs running than requested in the -scc
Change-Id: I7599169739e6bb9b3e2377473377d5332ef2b68a
Signed-off-by: ahothan <ahothan@cisco.com>
Diffstat (limited to 'test/test_nfvbench.py')
-rw-r--r-- | test/test_nfvbench.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_nfvbench.py b/test/test_nfvbench.py index b430436..f532bba 100644 --- a/test/test_nfvbench.py +++ b/test/test_nfvbench.py @@ -215,7 +215,7 @@ def test_config(): expected = fail_pair[1] if expected is None: expected = fail_pair[0] - assert expected in e_info.value.message + assert expected in str(e_info) # whitelist keys flavor = {'flavor': {'vcpus': 2, 'ram': 8192, 'disk': 0, |