From 6f9ff544306b836f841b4504cd3ca922ea69366d Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Fri, 13 Apr 2018 08:44:39 -0400 Subject: [PATCH] fix PATH hack used in test --- awx/lib/tests/test_display_callback.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/lib/tests/test_display_callback.py b/awx/lib/tests/test_display_callback.py index 1b6b13a67a..e152e26166 100644 --- a/awx/lib/tests/test_display_callback.py +++ b/awx/lib/tests/test_display_callback.py @@ -36,7 +36,7 @@ with mock.patch.dict(os.environ, {'ANSIBLE_STDOUT_CALLBACK': CALLBACK, from ansible.vars.manager import VariableManager # Add awx/lib to sys.path so we can use the plugin - path = os.path.abspath(os.path.join(PLUGINS, '..', '..')) + path = os.path.abspath(os.path.join(PLUGINS, '..', '..', 'lib')) if path not in sys.path: sys.path.insert(0, path)