test: backend E2E coverage with parallelization support #671
Annotations
1 error
|
using `clone` on type `PlatformAddress` which implements the `Copy` trait:
tests/backend-e2e/identity_tasks.rs#L146
error: using `clone` on type `PlatformAddress` which implements the `Copy` trait
--> tests/backend-e2e/identity_tasks.rs:146:67
|
146 | match dash_sdk::query_types::AddressInfo::fetch(&sdk, platform_addr.clone()).await {
| ^^^^^^^^^^^^^^^^^^^^^ help: try removing the `clone` call: `platform_addr`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#clone_on_copy
= note: `-D clippy::clone-on-copy` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::clone_on_copy)]`
|