From 13dc7a08b79c7b62e6eb2c54befa5e6c02915bd3 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 4 Jul 2026 16:30:04 +0000 Subject: [PATCH] Fix foreign key label test expectations for default next_url key Follow-up to the commit adding next_url to the default table JSON keys. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01GrHZSypDfMnym1tM5XJAFZ --- tests/test_table_html.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_table_html.py b/tests/test_table_html.py index 86fb4254..87c48b6b 100644 --- a/tests/test_table_html.py +++ b/tests/test_table_html.py @@ -2313,6 +2313,7 @@ async def test_foreign_key_labels_obey_permissions(config): assert root_b.json() == { "ok": True, "next": None, + "next_url": None, "rows": [{"id": 1, "name": "world", "a_id": {"value": 1, "label": "hello"}}], "truncated": False, } @@ -2320,6 +2321,7 @@ async def test_foreign_key_labels_obey_permissions(config): assert anon_b.json() == { "ok": True, "next": None, + "next_url": None, "rows": [{"id": 1, "name": "world", "a_id": 1}], "truncated": False, }