mirror of
https://github.com/davegallant/rfd-notify.git
synced 2025-08-09 18:02:28 +00:00
Cargo update and clippy fix (#168)
* Bump serde from 1.0.132 to 1.0.136 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.132 to 1.0.136. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.132...v1.0.136) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Cargo update and clippy fix Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
@@ -22,7 +22,7 @@ mod tests {
|
||||
fn load_config_with_missing_sendgrid_api_key() {
|
||||
std::env::remove_var("SENDGRID_API_KEY");
|
||||
let file = "./examples/config.yaml";
|
||||
load(&file);
|
||||
load(file);
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -32,7 +32,7 @@ mod tests {
|
||||
std::env::set_var("SENDGRID_API_KEY", "FAKE");
|
||||
std::env::set_var("SENDGRID_MAIL_FROM", "notify@rfd-notify.org");
|
||||
std::env::set_var("SENDGRID_MAIL_TO", "test@email.com");
|
||||
load(&file);
|
||||
load(file);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user