Skip to content

Commit 2d595dc

Browse files
committed
Fix bracket in [out]
1 parent 3e8f2b6 commit 2d595dc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

mypyc/test-data/run-generics.test

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ def f(x: int, y: str) -> int:
9898
assert f(1, 'a') == 1
9999
assert f(2, y='b') == 2
100100
[out]
101-
[1, 'a']
101+
\[1, 'a']
102102
{}
103-
[]
104-
[]
105-
[]
106-
[2]
103+
\[]
104+
\[]
105+
\[]
106+
\[2]
107107
{'y': 'b'}
108-
['y']
109-
['y']
110-
['b']
108+
\['y']
109+
\['y']
110+
\['b']

0 commit comments

Comments
 (0)