From 9e0663cbba86d0b48efb9f2ee0e9b9f4c60c9c22 Mon Sep 17 00:00:00 2001 From: Zhengchao An Date: Wed, 2 Sep 2026 22:46:28 +0800 Subject: [PATCH] test(e2e): rename stall timing variable flagged by typos (#7070) --- crates/e2e_test/src/on_demand_migration/harness_self_test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/e2e_test/src/on_demand_migration/harness_self_test.rs b/crates/e2e_test/src/on_demand_migration/harness_self_test.rs index 6c19bc7e5..4aaf78431 100644 --- a/crates/e2e_test/src/on_demand_migration/harness_self_test.rs +++ b/crates/e2e_test/src/on_demand_migration/harness_self_test.rs @@ -452,9 +452,9 @@ async fn fake_source_fault_actions_truncate_stall_and_status() -> TestResult { let stalled = client.head_object().bucket(SOURCE_BUCKET).key("faulty").send().await?; assert!(started.elapsed() >= Duration::from_millis(350), "stall must delay the first byte"); assert_eq!(stalled.content_length(), Some(4096)); - let unstalled_started = Instant::now(); + let post_stall_started = Instant::now(); client.head_object().bucket(SOURCE_BUCKET).key("faulty").send().await?; - assert!(unstalled_started.elapsed() < Duration::from_millis(350), "stall is consumed once"); + assert!(post_stall_started.elapsed() < Duration::from_millis(350), "stall is consumed once"); // The object is intact once the script is drained. let intact = client.get_object().bucket(SOURCE_BUCKET).key("faulty").send().await?;