Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
volovyks committed Oct 21, 2024
1 parent 9aacb9a commit 01e678e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/chain-signatures/tests/cases/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ async fn test_presignature_persistence() -> anyhow::Result<()> {
let docker_network = "test-presignature-persistence";
docker_client.create_network(docker_network).await?;
let redis = containers::Redis::run(&docker_client, docker_network).await?;
let redis_url = Url::parse(&&redis.internal_address.as_str())?;
let redis_url = Url::parse(redis.internal_address.as_str())?;
let presignature_storage: LockRedisPresignatureStorage = Arc::new(RwLock::new(
storage::presignature_storage::init(redis_url, &AccountId::from_str("test.near").unwrap()),
));
Expand Down

0 comments on commit 01e678e

Please sign in to comment.