Skip to content

Commit 9c5edd1

Browse files
author
AGAEV Denis E
committed
Fix tests
1 parent c29d400 commit 9c5edd1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/tests/test_value_converter.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -610,8 +610,8 @@ class ValidateModelForCustomType(BaseModel):
610610
point_: Tuple[float, float]
611611
box_: Tuple[Tuple[float, float], Tuple[float, float]]
612612
path_: List[Tuple[float, float]]
613-
line_: Annotated[list[float], 3]
614-
lseg_: Annotated[list[Tuple[float, float]], 2]
613+
line_: Annotated[List[float], 3]
614+
lseg_: Annotated[List[Tuple[float, float]], 2]
615615
circle_: Tuple[Tuple[float, float], float]
616616

617617
varchar_arr: List[str]
@@ -631,7 +631,7 @@ class ValidateModelForCustomType(BaseModel):
631631
json_arr: List[Dict[str, List[Union[str, int, List[str]]]]]
632632
point_arr: List[Tuple[float, float]]
633633
box_arr: List[Tuple[Tuple[float, float], Tuple[float, float]]]
634-
path_arr: List[list[Tuple[float, float]]]
634+
path_arr: List[List[Tuple[float, float]]]
635635
line_arr: List[Annotated[List[float], 3]]
636636
lseg_arr: List[Annotated[List[Tuple[float, float]], 2]]
637637
circle_arr: List[Tuple[Tuple[float, float], float]]

0 commit comments

Comments
 (0)