Skip to content

Commit f51bec9

Browse files
committed
sub_path
1 parent 09ec9df commit f51bec9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/opengeodeweb_back/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ def test_route_wrong_params(
2121
def get_json() -> tuple[JsonData, Any]:
2222
json = get_full_data()
2323
target: Any = json
24-
for p in path:
25-
target = target[p]
24+
for sub_path in path:
25+
target = target[sub_path]
2626
return json, target
2727

2828
data = get_json()[1]

0 commit comments

Comments
 (0)