rename zenith.zenith_tenant to neon.tenant_id in test

This commit is contained in:
Anastasia Lubennikova
2022-05-30 12:03:04 +03:00
parent 915e5c9114
commit e014cb6026

View File

@@ -431,8 +431,8 @@ def test_wal_backup(zenith_env_builder: ZenithEnvBuilder, storage_type: str):
pg = env.postgres.create_start('test_safekeepers_wal_backup')
# learn zenith timeline from compute
tenant_id = pg.safe_psql("show zenith.zenith_tenant")[0][0]
timeline_id = pg.safe_psql("show zenith.zenith_timeline")[0][0]
tenant_id = pg.safe_psql("show neon.tenant_id")[0][0]
timeline_id = pg.safe_psql("show neon.timeline_id")[0][0]
pg_conn = pg.connect()
cur = pg_conn.cursor()