diff options
author | Dan Radez <dradez@redhat.com> | 2016-06-20 05:56:34 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2016-06-30 18:18:00 -0400 |
commit | 45fabbab6a4107df8a32f09045cf955afeb2e4ac (patch) | |
tree | 15b49db13ffb5b17ff69ef84ed298531184c3072 /tests/test_apex_network_environment.py | |
parent | 0b91edabf51d60968a20d605dd2b97f03283e06b (diff) |
Syntax updates and new tests
- syntax updates to match pep8 standards
- tests to cover apex_python_utils.py
Change-Id: Ifac06fdbb97266f1b574b20610979b6965d6dd55
Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'tests/test_apex_network_environment.py')
-rw-r--r-- | tests/test_apex_network_environment.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_apex_network_environment.py b/tests/test_apex_network_environment.py index 90c89073..2a8438fa 100644 --- a/tests/test_apex_network_environment.py +++ b/tests/test_apex_network_environment.py @@ -33,7 +33,8 @@ class TestNetworkEnvironment(object): """This method is run once after _each_ test method is executed""" def test_init(self): - assert_raises(NetworkEnvException, NetworkEnvironment, None, '../build/network-environment.yaml') + assert_raises(NetworkEnvException, NetworkEnvironment, + None, '../build/network-environment.yaml') def test_get_netenv_settings(self): ns = NetworkSettings('../config/network/network_settings.yaml', True) |