Skip to content

Commit 6072337

Browse files
committed
Fix tests
1 parent a07374d commit 6072337

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/type-hint.vader

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Expect python:
2525
def foo(sample_var) -> str:
2626
"""foo
2727

28-
:param sample_var
28+
:param sample_var:
2929

3030
:rtype: str
3131
"""
@@ -41,8 +41,8 @@ Expect python:
4141
def foo(arg1, arg2) -> str:
4242
"""foo
4343

44-
:param arg1
45-
:param arg2
44+
:param arg1:
45+
:param arg2:
4646

4747
:rtype: str
4848
"""
@@ -100,7 +100,7 @@ Expect python:
100100

101101
:param n:
102102
:type n: int
103-
:param arg
103+
:param arg:
104104

105105
:rtype: int
106106
"""

0 commit comments

Comments
 (0)