Skip to content

Commit

Permalink
test: ensure backwards compatibility for typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jimduchek committed Aug 5, 2023
1 parent a87bc04 commit a35aeba
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

from dbus_fast.auth import UID_NOT_SPECIFIED, AuthExternal
from dbus_fast.errors import AuthError
from dbus_fast.auth import AuthAnnonymous, AuthAnonymous


def test_annonymous_backcompat():
auth = AuthAnnonymous()
assert isinstance(auth, AuthAnonymous)


def test_uid_is_set():
Expand Down

0 comments on commit a35aeba

Please sign in to comment.