Skip to content

Commit 998f671

Browse files
committed
Update tests.
1 parent c750f7e commit 998f671

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

jupyterlab_server/tests/test_settings_api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,10 @@ async def test_listing(fetch, labserverapp):
5353
res = r.body.decode()
5454
response = json.loads(res)
5555
response_ids = [item['id'] for item in response['settings']]
56+
response_schemas = [item['schema'] for item in response['settings']]
5657
response_versions = [item['version'] for item in response['settings']]
5758
assert set(response_ids) == set(ids)
59+
assert all(response_schemas)
5860
assert set(response_versions) == set(versions)
5961
last_modifieds = [item['last_modified'] for item in response['settings']]
6062
createds = [item['created'] for item in response['settings']]

0 commit comments

Comments
 (0)