From 5869897778754ff4674f5040d2618d2c01d65cb0 Mon Sep 17 00:00:00 2001 From: Noel Kwan Date: Tue, 6 Feb 2024 00:13:27 +0800 Subject: [PATCH] fmt --- .../tests/integration_tests/recovery/background_ddl.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tests/simulation/tests/integration_tests/recovery/background_ddl.rs b/src/tests/simulation/tests/integration_tests/recovery/background_ddl.rs index 56403d9099d94..e455ad006f516 100644 --- a/src/tests/simulation/tests/integration_tests/recovery/background_ddl.rs +++ b/src/tests/simulation/tests/integration_tests/recovery/background_ddl.rs @@ -405,7 +405,8 @@ async fn test_high_barrier_latency_cancel_arrangement_backfill() -> Result<()> { // Wait until at least 10% of records are ingested. let progress = session .run("select progress from rw_catalog.rw_ddl_progress;") - .await.unwrap(); + .await + .unwrap(); tracing::info!(progress, "get progress before cancel stream job"); let progress = progress.replace('%', ""); let progress = progress.parse::().unwrap();