Skip to content

Commit

Permalink
ruff cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kebwi committed Dec 9, 2024
1 parent 07267ec commit bdd2823
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_skeletons.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
}
info_url = url_template.format_map(info_mapping)


class TestSkeletonsClient:
sk_endpoints = endpoints.skeletonservice_endpoints_v1

Expand All @@ -41,7 +42,7 @@ def test_create_client(self):
@responses.activate
def test_get_version(self, myclient, mocker):
metadata_url = self.sk_endpoints.get("get_version").format_map(sk_mapping)
responses.add(responses.GET, url=metadata_url, json='0.1.2', status=200)
responses.add(responses.GET, url=metadata_url, json="0.1.2", status=200)

print(myclient.skeleton.get_version())
# client.skeleton.get_version()

0 comments on commit bdd2823

Please sign in to comment.