Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Mar 16, 2024
1 parent 7ee7106 commit 1c23adc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/config/wizard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
"#,
);
}
Expand Down Expand Up @@ -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:]'"]
"#,
);
}
Expand Down Expand Up @@ -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"
"#,
);
}
Expand Down Expand Up @@ -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:]'"]
"#,
);
}
Expand Down

0 comments on commit 1c23adc

Please sign in to comment.