Skip to content

Commit 8296a23

Browse files
committed
fix wrong issue ids
1 parent fbea687 commit 8296a23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_struct.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ def test_issue35714(self):
723723
struct.calcsize(s)
724724

725725
@support.cpython_only
726-
def test_issue92848(self):
726+
def test_issue98248(self):
727727
def test_error_msg(prefix, int_type, is_unsigned):
728728
fmt_str = prefix + int_type
729729
size = struct.calcsize(fmt_str)
@@ -756,7 +756,7 @@ def test_error_msg(prefix, int_type, is_unsigned):
756756
int_type = 'n'
757757
test_error_msg("@", int_type, False)
758758

759-
def test_issue92848_error_propagation(self):
759+
def test_issue98248_error_propagation(self):
760760
class Div0:
761761
def __index__(self):
762762
1 / 0

0 commit comments

Comments
 (0)