Fix pylint error on utf8 character in string (#45880)

Small fix
This commit is contained in:
Dag Wieers 2018-09-20 04:01:44 +02:00 committed by Jordan Borean
parent 51c5e60e49
commit cb4bf04be6

View file

@ -18,7 +18,7 @@ def test_module_response_deepcopy_basic():
def test_module_response_deepcopy_atomic():
tests = [None, 42, 2**100, 3.14, True, False, 1j,
"hello", "hello\u1234"]
"hello", u"hello\u1234"]
for x in tests:
assert module_response_deepcopy(x) is x