summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDan Radez <dradez@redhat.com>2016-08-12 13:22:41 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-12 13:22:41 +0000
commit7bc81629e67d747cc362056669070f856494fe01 (patch)
tree4c5af25366bac1b781009718eb6db558aa21059b /tests
parentf03e10771fb5031a19ae998665d02470af61c11e (diff)
parent9564b5853f7500602964b22859d51b85867f2899 (diff)
Merge "Making NetworkEnvironment a dict"
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, {})