Skip to content

Commit

Permalink
Merge pull request #26 from StateFarmIns/dependabot/cargo/h2-0.3.26
Browse files Browse the repository at this point in the history
fix(deps): bump h2 from 0.3.24 to 0.3.26
  • Loading branch information
Clete2 authored Apr 9, 2024
2 parents 66b05cb + 690ecad commit 11489b4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 18 deletions.
18 changes: 4 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ tracing = "0.1"
metrics = "0.21"

[dev-dependencies]
insta = { version = "1.34", features = ["filters"] }
insta = { version = "1.38", features = ["filters"] }
mockall = "0.11"
ctor = "0.2"
6 changes: 3 additions & 3 deletions src/bin/global_retention_setter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ mod tests {

let result = process_all_log_groups(mock_cloud_watch_logs_client).await.expect("Should not fail");

insta::assert_display_snapshot!(result);
insta::assert_snapshot!(result);
}

#[tokio::test]
Expand All @@ -279,7 +279,7 @@ mod tests {

let result = process_all_log_groups(mock_cloud_watch_logs_client).await.expect("Should not fail");

insta::assert_display_snapshot!(result);
insta::assert_snapshot!(result);
}

#[tokio::test]
Expand Down Expand Up @@ -375,7 +375,7 @@ mod tests {

let result = process_all_log_groups(mock_cloud_watch_logs_client).await.expect_err("Should fail");

insta::assert_display_snapshot!(result);
insta::assert_snapshot!(result);
}

#[tokio::test]
Expand Down

0 comments on commit 11489b4

Please sign in to comment.