Skip to content

Commit

Permalink
adapt plugin title in test
Browse files Browse the repository at this point in the history
  • Loading branch information
erral committed Mar 15, 2024
1 parent d67749a commit 1c0b988
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/services/test_services_login_get.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_login_get_available(self):
[0, "id", "oidc"],
[0, "plugin", "oidc"],
[0, "url", "/@login-oidc/oidc"],
[0, "title", "OIDC Connect"],
[0, "title", "OpenID Connect"],
],
)
def test_login_get_options(self, idx: int, key: str, expected: str):
Expand Down
10 changes: 5 additions & 5 deletions tests/services/test_servides_login_get_multiple_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ def test_login_get_available(self):
[0, "id", "oidc"],
[0, "plugin", "oidc"],
[0, "url", "/@login-oidc/oidc"],
[0, "title", "OIDC Connect"],
[0, "id", "google"],
[0, "plugin", "oidc"],
[0, "url", "/@login-oidc/google"],
[0, "title", "Google"],
[0, "title", "OpenID Connect"],
[1, "id", "google"],
[1, "plugin", "oidc"],
[1, "url", "/@login-oidc/google"],
[1, "title", "Google"],
],
)
def test_login_get_options(self, idx: int, key: str, expected: str):
Expand Down

0 comments on commit 1c0b988

Please sign in to comment.