Skip to content

Commit 5bf02de

Browse files
committed
gh-150449: Remove redundant issue references from test comments
1 parent d774ab7 commit 5bf02de

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/test_sqlite3/test_dbapi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1412,13 +1412,13 @@ def test_blob_set_empty_slice(self):
14121412

14131413
def test_blob_set_empty_slice_wrong_type(self):
14141414
# Assigning a non-buffer object to an empty slice must raise TypeError
1415-
# even when the slice length is zero (gh-150449).
1415+
# even when the slice length is zero.
14161416
with self.assertRaises(TypeError):
14171417
self.blob[5:5] = None
14181418

14191419
def test_blob_set_empty_slice_wrong_size(self):
14201420
# Assigning a non-empty bytes object to an empty slice must raise
1421-
# IndexError because the sizes do not match (gh-150449).
1421+
# IndexError because the sizes do not match.
14221422
with self.assertRaisesRegex(IndexError, "wrong size"):
14231423
self.blob[5:5] = b"123"
14241424

0 commit comments

Comments
 (0)