From 33d06279303de1d9f5e51cf08a0480de377cfa5c Mon Sep 17 00:00:00 2001 From: Alex Chi Date: Tue, 23 May 2023 11:30:23 -0400 Subject: [PATCH] update comment Signed-off-by: Alex Chi --- test_runner/regress/test_tenants.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test_runner/regress/test_tenants.py b/test_runner/regress/test_tenants.py index 683b766368..67acabfe75 100644 --- a/test_runner/regress/test_tenants.py +++ b/test_runner/regress/test_tenants.py @@ -404,7 +404,7 @@ def test_pageserver_with_empty_tenants( def test_failed_tenant_directory_is_removed( neon_env_builder: NeonEnvBuilder, remote_storage_kind: RemoteStorageKind ): - """Tenants which fail to be created are cleaned up from disk and left broken""" + """Tenants which fail to be created are cleaned up from disk and not created""" neon_env_builder.enable_remote_storage( remote_storage_kind=remote_storage_kind, test_name="test_pageserver_create_tenants_fail", @@ -425,4 +425,5 @@ def test_failed_tenant_directory_is_removed( assert not (env.repo_dir / "tenants" / str(tenant_id)).exists() with pytest.raises(PageserverApiException, match="Tenant .* not found"): + # the tenant creation is not successful and should not be found client.tenant_status(tenant_id)