Skip to content

Commit 594f831

Browse files
committed
Run ruff --fix to pass lint check at CI processing
1 parent 64d2d37 commit 594f831

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

entity/tests/test_api_v2.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2909,9 +2909,9 @@ def test_list_entry_when_alias_is_related(self):
29092909
items[0].add_alias(ALIAS_NAME)
29102910

29112911
# search item by alias name
2912-
resp = self.client.get("/entity/api/v2/%d/entries/?search=%s&with_alias=1" % (
2913-
self.entity.id, ALIAS_NAME
2914-
))
2912+
resp = self.client.get(
2913+
"/entity/api/v2/%d/entries/?search=%s&with_alias=1" % (self.entity.id, ALIAS_NAME)
2914+
)
29152915
self.assertEqual(resp.status_code, 200)
29162916

29172917
# then only item that alias is set was returned

0 commit comments

Comments
 (0)