Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit ef9a945

Browse files
committed
test: get by identifer tests
1 parent 353fae0 commit ef9a945

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

passageidentity/user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def getByIdentifier(self, userIdentifier: str) -> Union[UserInfo, PassageError]:
6060
if len(users) == 0:
6161
raise PassageError("Failed to find user data")
6262

63-
return self.getUser(users[0].id)
63+
return self.get(users[0].id)
6464
except Exception as e:
6565
raise PassageError(f"Failed to fetch user data: {e}")
6666

0 commit comments

Comments
 (0)