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.
This commit is contained in:
唐小鸭
2026-08-23 00:26:43 +08:00
parent 858cf20d9a
commit 290662bc3a
@@ -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<dyn std::error::Error + Send + Sync>>;
@@ -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?;