Skip to content

Commit 90e624c

Browse files
committed
Fix linting issues
1 parent 3605f87 commit 90e624c

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

tests/test.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
@pytest.mark.parametrize("url", routes)
1616
def test_destination(
17-
page: Page,
18-
url: str,
17+
page: Page,
18+
url: str,
1919
) -> None:
2020
"""Test that the destinations page loads with seeded data"""
2121
# Create a destination
@@ -28,10 +28,10 @@ def test_destination(
2828
@pytest.mark.parametrize(
2929
"title, url",
3030
(
31-
("Acerca de", "/es/about/"),
32-
("Inicio", "/es/"),
33-
("Eventos", "/es/events/"),
34-
("Comunidad", "/es/community/"),
31+
("Acerca de", "/es/about/"),
32+
("Inicio", "/es/"),
33+
("Eventos", "/es/events/"),
34+
("Comunidad", "/es/community/"),
3535
),
3636
)
3737
def test_headers_in_language(page: Page, title: str, url: str) -> None:
@@ -56,10 +56,10 @@ def test_switching_lang_es_about(page: Page) -> None:
5656
@pytest.mark.parametrize(
5757
"title, url",
5858
(
59-
("Kutuhusu", "/sw/about/"),
60-
("Nyumbani", "/sw/"),
61-
("Matukio", "/sw/events/"),
62-
("Jumuiya", "/sw/community/"),
59+
("Kutuhusu", "/sw/about/"),
60+
("Nyumbani", "/sw/"),
61+
("Matukio", "/sw/events/"),
62+
("Jumuiya", "/sw/community/"),
6363
),
6464
)
6565
def test_headers_in_sw(page: Page, title: str, url: str) -> None:
@@ -84,11 +84,11 @@ def test_switching_lang_sw_about(page: Page) -> None:
8484
@pytest.mark.parametrize(
8585
"title, url",
8686
(
87-
("Black Python Devs | Home", "/"),
88-
("Black Python Devs | Blog", "/blog"),
89-
("Black Python Devs | About Us", "/about/"),
90-
("Black Python Devs | Events", "/events/"),
91-
("Black Python Devs | Community", "/community/"),
87+
("Black Python Devs | Home", "/"),
88+
("Black Python Devs | Blog", "/blog"),
89+
("Black Python Devs | About Us", "/about/"),
90+
("Black Python Devs | Events", "/events/"),
91+
("Black Python Devs | Community", "/community/"),
9292
),
9393
)
9494
def test_bpdevs_title_en(page: Page, title: str, url: str) -> None:

0 commit comments

Comments
 (0)