Skip to content

Commit

Permalink
style(lint): manual fixes for ruff 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau committed Aug 16, 2024
1 parent 5b9774d commit 1fd4e31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/test_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def test_secretservice_file_fallsback(mocker, exception):
)
auth = Auth(application_name="test-app", host="foo")

assert type(auth._keyring) == FileKeyring
assert type(auth._keyring) is FileKeyring


@pytest.mark.disable_fake_keyring
Expand All @@ -312,4 +312,4 @@ def test_secretservice_works(mocker):
)
auth = Auth(application_name="test-app", host="foo")

assert type(auth._keyring) == SecretService.Keyring
assert type(auth._keyring) is SecretService.Keyring

0 comments on commit 1fd4e31

Please sign in to comment.