Skip to content

Commit f101513

Browse files
msimacektomasstupka
authored andcommitted
Fix test expectations
1 parent 61165fb commit f101513

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graalpython/lib-python/3/test/test_generators.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1869,12 +1869,12 @@ def printsolution(self, x):
18691869
...
18701870
SyntaxError: assignment to yield expression not possible
18711871
1872-
>>> def f(): (yield bar) = y
1872+
>>> def f(): (yield bar) = y # doctest:+IGNORE_EXCEPTION_DETAIL
18731873
Traceback (most recent call last):
18741874
...
18751875
SyntaxError: cannot assign to yield expression
18761876
1877-
>>> def f(): (yield bar) += y
1877+
>>> def f(): (yield bar) += y # doctest:+IGNORE_EXCEPTION_DETAIL
18781878
Traceback (most recent call last):
18791879
...
18801880
SyntaxError: cannot assign to yield expression

0 commit comments

Comments
 (0)