summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDan Radez <dradez@redhat.com>2016-08-11 11:00:02 -0400
committerDan Radez <dradez@redhat.com>2016-08-11 11:00:02 -0400
commit9564b5853f7500602964b22859d51b85867f2899 (patch)
tree33c362991a54d9d601f40ecb22e3f8f58ece7588 /tests
parent1900c3825ef9163b721cda7c117c18a42aa84fb9 (diff)
Making NetworkEnvironment a dict
Change-Id: I983f4483b328268413d4ec66c753f1219d59fd27 Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/test_apex_network_environment.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_apex_network_environment.py b/tests/test_apex_network_environment.py
index 97bdd370..9dcaffc0 100644
--- a/tests/test_apex_network_environment.py
+++ b/tests/test_apex_network_environment.py
@@ -41,5 +41,5 @@ class TestNetworkEnvironment(object):
ne = NetworkEnvironment(ns, '../build/network-environment.yaml',
compute_pre_config=True,
controller_pre_config=True)
- assert_is_instance(ne.get_netenv_settings(), dict)
- assert_not_equal(ne.get_netenv_settings(), {})
+ assert_is_instance(ne, dict)
+ assert_not_equal(ne, {})