summaryrefslogtreecommitdiffstats
path: root/test/units/module_utils/common/warnings/test_warn.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/units/module_utils/common/warnings/test_warn.py')
-rw-r--r--test/units/module_utils/common/warnings/test_warn.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/units/module_utils/common/warnings/test_warn.py b/test/units/module_utils/common/warnings/test_warn.py
index 85998b8419..ebb21c4ecf 100644
--- a/test/units/module_utils/common/warnings/test_warn.py
+++ b/test/units/module_utils/common/warnings/test_warn.py
@@ -9,7 +9,6 @@ import pytest
from ansible.module_utils.common import warnings
from ansible.module_utils.common.warnings import warn, get_warning_messages
-from ansible.module_utils.six import PY3
@pytest.fixture
@@ -51,7 +50,7 @@ def test_get_warning_messages(warning_messages):
{'k1': 'v1'},
(1, 2),
6.62607004,
- b'bytestr' if PY3 else None,
+ b'bytestr',
None,
)
)