test: log correct function name

Matched the printed function name with the actual function name.

The simple-agent test prints the function name to allow easier debugging.

One name was not set currectly (most likely through copy pasting).
This commit is contained in:
Sertonix Norson 2023-09-19 11:51:29 +00:00 committed by Denis Kenzior
parent dfb76edda8
commit f780f73f75
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class Agent(dbus.service.Object):
in_signature='o',
out_signature='ss')
def RequestUserNameAndPassword(self, path):
print("RequestPrivateKeyPassphrase (%s)" % (path))
print("RequestUserNameAndPassword (%s)" % (path))
print("Service credentials requested, type cancel to cancel")
user = input('User name: ')