Skip to content

Commit f75ee44

Browse files
committed
fix expected error msg for python 3.13
1 parent 908ae6e commit f75ee44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Traceback (most recent call last):
2-
File "test-data/testRecordSetTypeForwardRef.py", line 14, in <module>
2+
File "test-data/testRecordSetTypeForwardRef.py", line 15, in <module>
33
m()
4-
File "test-data/testRecordSetTypeForwardRef.py", line 12, in m
4+
File "test-data/testRecordSetTypeForwardRef.py", line 13, in m
55
r.x = "hello"
66
WyppTypeError: got value of wrong type
77
given: 'hello'
88
expected: value of type A
99

10-
declared at: test-data/testRecordSetTypeForwardRef.py:4
11-
caused by: test-data/testRecordSetTypeForwardRef.py:12
10+
declared at: test-data/testRecordSetTypeForwardRef.py:5
11+
caused by: test-data/testRecordSetTypeForwardRef.py:13
1212
| r.x = "hello"

0 commit comments

Comments
 (0)