diff mbox series

test: log correct function name

Message ID CVMUXBOJCCQ3.3DY5I2CD7ES6U@sert-surfa-alpine (mailing list archive)
State Accepted, archived
Headers show
Series test: log correct function name | expand

Commit Message

Sertonix Sept. 19, 2023, 11:51 a.m. UTC
Matched the printed function name with the actuall 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).

---
 test/simple-agent | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Denis Kenzior Sept. 25, 2023, 2:30 p.m. UTC | #1
Hi,

On 9/19/23 06:51, Sertonix wrote:
> Matched the printed function name with the actuall 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).
> 
> ---
>   test/simple-agent | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 

Looks fine to me, but I can't apply without a proper full name in the 'Author' tag.

Regards,
-Denis
Sertonix Oct. 12, 2023, 1:01 p.m. UTC | #2
> Looks fine to me, but I can't apply without a proper full name in the
> 'Author' tag.

Sorry for the delayed response. Here is the complete 'Author' tag:

Author: Sertonix Norson <sertonix@posteo.net>
Denis Kenzior Oct. 16, 2023, 6:21 p.m. UTC | #3
Hi Sertonix,

On 9/19/23 06:51, Sertonix wrote:
> Matched the printed function name with the actuall 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).
> 
> ---
>   test/simple-agent | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks.

Regards,
-Denis
diff mbox series

Patch

diff --git a/test/simple-agent b/test/simple-agent
index cdfc2076..f34c04f4 100755
--- a/test/simple-agent
+++ b/test/simple-agent
@@ -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: ')