Skip to content

Commit 06211bf

Browse files
committed
D. J.:
- Fixed typing of the output from leetcode problem 812
1 parent 8c617af commit 06211bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_812_largest_triangle_area.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
([[1, 0], [0, 0], [0, 1]], 0.5),
1313
],
1414
)
15-
def test_func(points: List[List[int]], expected: List[int]):
15+
def test_func(points: List[List[int]], expected: float):
1616
"""Tests the solution of a LeetCode problem."""
1717
triangle_area = Solution().largestTriangleArea(points)
1818
assert triangle_area == expected

0 commit comments

Comments
 (0)