Skip to content

Commit

Permalink
change case
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgolec committed Jun 16, 2024
1 parent 28e0d8b commit e3e8e81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/auth_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def test_disallowed_hostname(
callback_url = 'https://example.com/callback'

with self.assertRaisesRegex(
ValueError, 'disallowed hostname example.com'):
ValueError, 'Disallowed hostname example.com'):
auth.client_from_login_flow(
API_KEY, APP_SECRET, callback_url, self.token_path)

Expand All @@ -193,7 +193,7 @@ def test_disallowed_hostname_with_port(
callback_url = 'https://example.com:8080/callback'

with self.assertRaisesRegex(
ValueError, 'disallowed hostname example.com'):
ValueError, 'Disallowed hostname example.com'):
auth.client_from_login_flow(
API_KEY, APP_SECRET, callback_url, self.token_path)

Expand Down

0 comments on commit e3e8e81

Please sign in to comment.