From 1c23adc8a2965199103cb0e4e2eabd74a7deda22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Sat, 16 Mar 2024 22:31:32 +0100 Subject: [PATCH] fix unit tests --- src/config/wizard.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config/wizard.rs b/src/config/wizard.rs index ccee25b..524a4ac 100644 --- a/src/config/wizard.rs +++ b/src/config/wizard.rs @@ -311,7 +311,7 @@ email = "test@localhost" imap.host = "localhost" imap.port = 143 imap.login = "test@localhost" -imap.passwd.cmd = "pass show test" +imap.passwd.command = "pass show test" "#, ); } @@ -345,7 +345,7 @@ email = "test@localhost" imap.host = "localhost" imap.port = 143 imap.login = "test@localhost" -imap.passwd.cmd = ["pass show test", "tr -d '[:blank:]'"] +imap.passwd.command = ["pass show test", "tr -d '[:blank:]'"] "#, ); } @@ -438,7 +438,7 @@ email = "test@localhost" smtp.host = "localhost" smtp.port = 143 smtp.login = "test@localhost" -smtp.passwd.cmd = "pass show test" +smtp.passwd.command = "pass show test" "#, ); } @@ -472,7 +472,7 @@ email = "test@localhost" smtp.host = "localhost" smtp.port = 143 smtp.login = "test@localhost" -smtp.passwd.cmd = ["pass show test", "tr -d '[:blank:]'"] +smtp.passwd.command = ["pass show test", "tr -d '[:blank:]'"] "#, ); }