Skip to content

Commit fa3ea5e

Browse files
committed
Fixing test case
1 parent d03fe55 commit fa3ea5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_annotationlib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def f(x: a[[int, str], float]):
378378

379379
def g(
380380
w: a[[int, str], float],
381-
x: a[{int, str}, 3],
381+
x: a[{int}, 3],
382382
y: a[{int: str}, 4],
383383
z: a[(int, str), 5],
384384
):
@@ -388,7 +388,7 @@ def g(
388388
anno,
389389
{
390390
"w": "a[[int, str], float]",
391-
"x": "a[{int, str}, 3]",
391+
"x": "a[{int}, 3]",
392392
"y": "a[{int: str}, 4]",
393393
"z": "a[(int, str), 5]",
394394
},

0 commit comments

Comments
 (0)