Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
mamico committed Sep 25, 2023
1 parent e25a832 commit 82b94c7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/redturtle/prenotazioni/tests/test_prenotazioni_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,12 @@ def test_search_by_fiscalcode(self):

def test_search_by_fiscalcode_case_insensitive(self):
# ABCDEF12G34H567I -> AbCdEf12G34H567i
camelcase_fiscalcode = "".join([
c.upper() if i % 2 == 0 else c.lower()
for i, c in enumerate(self.testing_fiscal_code)
])
camelcase_fiscalcode = "".join(
[
c.upper() if i % 2 == 0 else c.lower()
for i, c in enumerate(self.testing_fiscal_code)
]
)
result_uids = [
i["booking_id"]
for i in self.api_session.get(
Expand Down

0 comments on commit 82b94c7

Please sign in to comment.