Skip to content

Commit f310b1d

Browse files
committed
fix: lint
1 parent f70a532 commit f310b1d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/gateway/test_provider_determination.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,9 @@ def test_provider_determination_malformed_resources(self, minimal_config):
297297

298298
for resource in malformed_resources:
299299
provider = gateway._determine_provider_for_resource(resource)
300-
assert provider == "github", (
301-
f"Failed for malformed resource: {resource}"
302-
)
300+
assert (
301+
provider == "github"
302+
), f"Failed for malformed resource: {resource}"
303303

304304
def test_provider_determination_unicode_resources(self, minimal_config):
305305
"""Test provider determination with unicode characters in resources."""

tests/integration/test_resilient_oauth.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ def test_all_services_use_same_provider(self, github_config):
190190
provider = gateway._determine_provider_for_resource(
191191
f"http://localhost:8080/{service}/mcp"
192192
)
193-
assert provider == "github", (
194-
f"Service {service} returned wrong provider: {provider}"
195-
)
193+
assert (
194+
provider == "github"
195+
), f"Service {service} returned wrong provider: {provider}"
196196

197197
def test_provider_determination_performance(self, github_config):
198198
"""Test that provider determination is consistently fast."""

0 commit comments

Comments
 (0)