From 89746a48c63715753fe8f68e471c9bdfb9516d24 Mon Sep 17 00:00:00 2001 From: Joonas Koivunen Date: Thu, 20 Jul 2023 19:55:40 +0300 Subject: [PATCH] chore: fix copypaste caused flakyness (#4763) I introduced a copypaste error leading to flaky [test failure][report] in #4737. Solution is to use correct/unique test name. I also looked into providing a proper fn name via macro but ... Yeah, it's probably not a great idea. [report]: https://github.com/neondatabase/neon/actions/runs/5612473297/job/15206293430#step:15:197 --- pageserver/src/tenant/timeline.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pageserver/src/tenant/timeline.rs b/pageserver/src/tenant/timeline.rs index 887deeedf0..e5fedeb73e 100644 --- a/pageserver/src/tenant/timeline.rs +++ b/pageserver/src/tenant/timeline.rs @@ -4839,8 +4839,7 @@ mod tests { #[tokio::test] async fn layer_eviction_aba_fails() { - let harness = - TenantHarness::create("two_layer_eviction_attempts_at_the_same_time").unwrap(); + let harness = TenantHarness::create("layer_eviction_aba_fails").unwrap(); let remote_storage = { // this is never used for anything, because of how the create_test_timeline works, but