fix unit tests

This commit is contained in:
Clément DOUIN 2024-03-16 22:31:32 +01:00
parent 7ee710634b
commit 1c23adc8a2
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72

View file

@ -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:]'"]
"#,
);
}