Skip to content

Commit d5cf16a

Browse files
committed
Fix Lint CI
1 parent 8749b1c commit d5cf16a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lib/test/test_capi/test_bytes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,15 +343,15 @@ def test_extend(self):
343343
writer.extend(3, b'456')
344344
self.assertEqual(writer.finish(), b'number=123456')
345345

346-
def test_hello_world(self):
346+
def test_hello_world_example(self):
347347
self.assertEqual(_testcapi.byteswriter_hello_world(),
348348
b'Hello World')
349349

350-
def test_alloc(self):
350+
def test_alloc_example(self):
351351
self.assertEqual(_testcapi.byteswriter_alloc(),
352352
b'abc')
353353

354-
def test_extend(self):
354+
def test_extend_example(self):
355355
self.assertEqual(_testcapi.byteswriter_extend(),
356356
b'Hello World')
357357

0 commit comments

Comments
 (0)