Skip to content

Commit

Permalink
fixed linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm authored and nyurik committed Oct 20, 2024
1 parent 9c48159 commit b501a56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion martin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@ url.workspace = true
static-files = { workspace = true, optional = true }

[dev-dependencies]
anyhow.workspace = true
cargo-husky.workspace = true
criterion.workspace = true
ctor.workspace = true
indoc.workspace = true
insta = { workspace = true, features = ["yaml"] }
pprof.workspace = true
rstest.workspace = true
anyhow.workspace = true
testcontainers-modules.workspace = true
2 changes: 1 addition & 1 deletion martin/src/pg/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ mod tests {
.start()
.await?;
let pg_config = Config::new()
.host(&node.get_host().await?.to_string())
.host(node.get_host().await?.to_string())
.port(node.get_host_port_ipv4(5432).await?)
.dbname("postgres")
.user("postgres")
Expand Down

0 comments on commit b501a56

Please sign in to comment.