##// END OF EJS Templates
tests: avoid using a list comprehension to fill a list with fixed values...
Matt Harbison -
r44448:6dbb18e1 default
parent child Browse files
Show More
@@ -1230,7 +1230,7 b' class BufferingDecoderTests(TestCase):'
1230 True,
1230 True,
1231 False,
1231 False,
1232 None,
1232 None,
1233 [None for i in range(128)],
1233 [None] * 128,
1234 ]
1234 ]
1235
1235
1236 encoded = b''.join(cborutil.streamencode(source))
1236 encoded = b''.join(cborutil.streamencode(source))
General Comments 0
You need to be logged in to leave comments. Login now