Skip to content

Commit 8d57181

Browse files
committed
fix(clippy): remove superfluous type cast
1 parent 49537bd commit 8d57181

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration-tests/src/enhanced_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ pub async fn test_v2_receipt_processing_enhanced() -> Result<()> {
6969
let rav_result = MetricsUtils::wait_for_rav_generation(
7070
&ctx,
7171
&allocation.id,
72-
initial_ravs as u32,
72+
initial_ravs,
7373
Duration::from_secs(30),
7474
)
7575
.await;
7676

7777
let fee_result = MetricsUtils::wait_for_fee_aggregation(
7878
&ctx,
7979
&allocation.id,
80-
initial_fees as f64,
80+
initial_fees,
8181
Duration::from_secs(30),
8282
)
8383
.await;

0 commit comments

Comments
 (0)