Skip to content

Commit b31a827

Browse files
committed
Update get_return_annotation test
1 parent c3e0a48 commit b31a827

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/python/fixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5097,7 +5097,7 @@ def six() -> int:
50975097
def two_sixes() -> tuple[int, str]:
50985098
return (6, "six")
50995099

5100-
assert get_return_annotation(two_sixes) == "Tuple[int, str]"
5100+
assert get_return_annotation(two_sixes) == "tuple[int, str]"
51015101

51025102
def no_annot():
51035103
return 6

0 commit comments

Comments
 (0)