summaryrefslogtreecommitdiff
path: root/pylint/test/unittest_checker_strings.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/unittest_checker_strings.py')
-rw-r--r--pylint/test/unittest_checker_strings.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/pylint/test/unittest_checker_strings.py b/pylint/test/unittest_checker_strings.py
index aff6f5520..d529b9214 100644
--- a/pylint/test/unittest_checker_strings.py
+++ b/pylint/test/unittest_checker_strings.py
@@ -4,10 +4,6 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
-import sys
-
-import pytest
-
import astroid
from pylint.checkers import strings
@@ -17,10 +13,6 @@ from pylint.testutils import CheckerTestCase
class TestStringChecker(CheckerTestCase):
CHECKER_CLASS = strings.StringFormatChecker
- @pytest.mark.skipif(sys.version_info <= (3, 0), reason=""
- "Tests that the string formatting checker "
- "doesn't fail when encountering a bytes "
- "string with a .format call")
def test_format_bytes(self):
code = "b'test'.format(1, 2)"
node = astroid.extract_node(code)