diff options
author | ansible-zuul[bot] <48994755+ansible-zuul[bot]@users.noreply.github.com> | 2020-04-24 23:57:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-24 23:57:39 +0000 |
commit | 300bfac93e63fd87793527f8741715e5e27ad82a (patch) | |
tree | 9ca652dee7f372569659232a9ecf7877c5bca861 /tests/unit | |
parent | 77e8b041b2983415ac36eb6264f6e385ac87b074 (diff) | |
parent | 022126a694db1e582de3d1af7bc763f43959af1b (diff) | |
download | vyos.vyos-300bfac93e63fd87793527f8741715e5e27ad82a.tar.gz vyos.vyos-300bfac93e63fd87793527f8741715e5e27ad82a.zip |
Merge pull request #22 from pabelanger/temp/ansible.cfg
Add missing ansible.cfg for integration testing
Reviewed-by: https://github.com/apps/ansible-zuul
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/modules/network/vyos/test_vyos_static_route.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit/modules/network/vyos/test_vyos_static_route.py b/tests/unit/modules/network/vyos/test_vyos_static_route.py index 762508ce..8eef5fbc 100644 --- a/tests/unit/modules/network/vyos/test_vyos_static_route.py +++ b/tests/unit/modules/network/vyos/test_vyos_static_route.py @@ -21,7 +21,7 @@ from __future__ import absolute_import, division, print_function __metaclass__ = type from ansible_collections.vyos.vyos.tests.unit.compat.mock import patch -from ansible.modules.network.vyos import _vyos_static_route +from ansible.modules.network.vyos import vyos_static_route from ansible_collections.vyos.vyos.tests.unit.modules.utils import ( set_module_args, ) @@ -30,18 +30,18 @@ from .vyos_module import TestVyosModule class TestVyosStaticRouteModule(TestVyosModule): - module = _vyos_static_route + module = vyos_static_route def setUp(self): super(TestVyosStaticRouteModule, self).setUp() self.mock_get_config = patch( - "ansible.modules.network.vyos._vyos_static_route.get_config" + "ansible.modules.network.vyos.vyos_static_route.get_config" ) self.get_config = self.mock_get_config.start() self.mock_load_config = patch( - "ansible.modules.network.vyos._vyos_static_route.load_config" + "ansible.modules.network.vyos.vyos_static_route.load_config" ) self.load_config = self.mock_load_config.start() |