Skip to content

Commit ff06e42

Browse files
pylint: allow unittest naming
unittest methods use CamelCase for its asserts. We use it here for our custom assert too. Part of #270
1 parent c70bbee commit ff06e42

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/suites/test_encoding.py

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
from .lib.tarantool_server import TarantoolServer
99

1010
class TestSuiteEncoding(unittest.TestCase):
11+
# pylint: disable=invalid-name
12+
1113
@classmethod
1214
def setUpClass(self):
1315
print(' ENCODING '.center(70, '='), file=sys.stderr)

0 commit comments

Comments
 (0)