Skip to content

Commit dbe6d01

Browse files
Fix types
Co-authored-by: geruh <dru@amazon.com>
1 parent 354f148 commit dbe6d01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/catalog/test_rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2369,7 +2369,7 @@ def test_table_uuid_check_on_refresh(rest_mock: Mocker, example_table_metadata_v
23692369
("PATCH /v1/resource", HttpMethod.PATCH, "/v1/resource"),
23702370
],
23712371
)
2372-
def test_endpoint_parsing_from_string_with_valid_http_method(raw_string: str, http_method: str, path: str) -> None:
2372+
def test_endpoint_parsing_from_string_with_valid_http_method(raw_string: str, http_method: HttpMethod, path: str) -> None:
23732373
endpoint = Endpoint.from_string(raw_string)
23742374
assert endpoint.http_method == http_method
23752375
assert endpoint.path == path

0 commit comments

Comments
 (0)