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 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GrHZSypDfMnym1tM5XJAFZ
This commit is contained in:
Claude 2026-07-04 16:30:04 +00:00
commit 13dc7a08b7
No known key found for this signature in database

View file

@ -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,
}