diff options
author | Matt Clay <matt@mystile.com> | 2023-11-02 00:37:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-02 00:37:08 +0100 |
commit | 18e8401edd5357d1d9995ab6b44d7ff8d1702957 (patch) | |
tree | c45b1fbcb32a85e7208f262a8a0cbb3f3037d6ac /test/units/vars/test_variable_manager.py | |
parent | pip - Add module in venv example (diff) | |
download | ansible-18e8401edd5357d1d9995ab6b44d7ff8d1702957.tar.xz ansible-18e8401edd5357d1d9995ab6b44d7ff8d1702957.zip |
Remove Python 2.x compat from unit tests (#82109)
Diffstat (limited to 'test/units/vars/test_variable_manager.py')
-rw-r--r-- | test/units/vars/test_variable_manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/units/vars/test_variable_manager.py b/test/units/vars/test_variable_manager.py index c2649539fc..a6feb82bd2 100644 --- a/test/units/vars/test_variable_manager.py +++ b/test/units/vars/test_variable_manager.py @@ -19,7 +19,7 @@ from __future__ import annotations import os -from units.compat import unittest +import unittest from unittest.mock import MagicMock, patch from ansible.inventory.manager import InventoryManager from ansible.module_utils.six import iteritems |