From 290662bc3aa80013fb1ab49f28034a422aae16c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=94=90=E5=B0=8F=E9=B8=AD?= Date: Sun, 23 Aug 2026 00:26:43 +0800 Subject: [PATCH] test(e2e): drop serial_test from receiver LWW e2e main removed the serial_test dependency from e2e_test (#6344); the test uses an ephemeral-port RustFSTestEnvironment and needs no cross-test serialization, so the attribute and import go. --- crates/e2e_test/src/replication_lww_receiver_test.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/e2e_test/src/replication_lww_receiver_test.rs b/crates/e2e_test/src/replication_lww_receiver_test.rs index 34c62c976..4b51a4dc3 100644 --- a/crates/e2e_test/src/replication_lww_receiver_test.rs +++ b/crates/e2e_test/src/replication_lww_receiver_test.rs @@ -31,7 +31,6 @@ use crate::common::{RustFSTestEnvironment, init_logging}; use aws_sdk_s3::Client; use aws_sdk_s3::primitives::ByteStream; use aws_sdk_s3::types::{BucketVersioningStatus, VersioningConfiguration}; -use serial_test::serial; type TestResult = Result<(), Box>; @@ -93,7 +92,6 @@ async fn tag_value(client: &Client, bucket: &str, key: &str, version_id: &str, t } #[tokio::test(flavor = "multi_thread")] -#[serial] async fn receiver_lww_keeps_newer_tags_across_delivery_orders() -> TestResult { init_logging(); let mut env = RustFSTestEnvironment::new().await?;