test_tenant_reattach: fix reattach mode names (#6070)

## Problem

Ref
https://neondb.slack.com/archives/C033QLM5P7D/p1701987609146109?thread_ts=1701976393.757279&cid=C033QLM5P7D

## Summary of changes
- Make reattach mode names unique for `test_tenant_reattach`
This commit is contained in:
Alexander Bayandin
2023-12-08 08:39:45 +00:00
committed by GitHub
parent 7914eaf1e6
commit d9d8e9afc7

View File

@@ -55,7 +55,7 @@ def do_gc_target(
class ReattachMode(str, enum.Enum): class ReattachMode(str, enum.Enum):
REATTACH_EXPLICIT = "explicit" REATTACH_EXPLICIT = "explicit"
REATTACH_RESET = "reset" REATTACH_RESET = "reset"
REATTACH_RESET_DROP = "reset" REATTACH_RESET_DROP = "reset_drop"
# Basic detach and re-attach test # Basic detach and re-attach test