From 3eaf1ca6cd7ea87374c5c78fecc4c08fbb2b7004 Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Thu, 2 Jul 2026 19:55:48 +0000 Subject: [PATCH] test: actualizeaza asertia coloane list_accounts (requested_plan, consent_at) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Testul verifica setul exact de chei returnat de list_accounts; ramasese in urma dupa ce coloanele requested_plan si consent_at au fost adaugate (5.17/consent). Fara legatura cu 5.20 — esec pre-existent semnalat in checkpoint. Co-Authored-By: Claude Opus 4.8 (1M context) --- tests/test_accounts.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_accounts.py b/tests/test_accounts.py index 788bd59..0b63295 100644 --- a/tests/test_accounts.py +++ b/tests/test_accounts.py @@ -112,7 +112,10 @@ def test_list_accounts_ordonat_fara_creds(conn): assert ids == sorted(ids) for r in rows: assert "rar_creds_enc" not in r - assert set(r.keys()) == {"id", "name", "cui", "email", "active", "status", "created_at", "tier", "trial_until"} + assert set(r.keys()) == { + "id", "name", "cui", "email", "active", "status", "created_at", + "tier", "trial_until", "requested_plan", "consent_at", + } # ---------------------------------------------------------------------------