summaryrefslogtreecommitdiff
path: root/test/units/test_constants.py
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2017-03-23 13:35:05 -0700
committerGitHub <noreply@github.com>2017-03-23 13:35:05 -0700
commit2fff690caab6a1c6a81973f704be3fbd0bde2c2f (patch)
treed30539214f54f7073ca75c11e8077b0c21aff82f /test/units/test_constants.py
parentc7c8481181e96dab508e11917551551f83c5b677 (diff)
downloadansible-2fff690caab6a1c6a81973f704be3fbd0bde2c2f.tar.gz
Update module_utils.six to latest (#22855)
* Update module_utils.six to latest We've been held back on the version of six we could use on the module side to 1.4.x because of python-2.4 compatibility. Now that our minimum is Python-2.6, we can update to the latest version of six in module_utils and get rid of the second copy in lib/ansible/compat.
Diffstat (limited to 'test/units/test_constants.py')
-rw-r--r--test/units/test_constants.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/units/test_constants.py b/test/units/test_constants.py
index 776d2b9a76..4ee003a080 100644
--- a/test/units/test_constants.py
+++ b/test/units/test_constants.py
@@ -26,8 +26,8 @@ import os
import pytest
from ansible import constants
-from ansible.compat.six import StringIO
-from ansible.compat.six.moves import configparser
+from ansible.module_utils.six import StringIO
+from ansible.module_utils.six.moves import configparser
from ansible.module_utils._text import to_text