We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ec81a6 commit ae2b859Copy full SHA for ae2b859
1 file changed
tests/web/test_main.py
@@ -415,7 +415,11 @@ def test_meta(client: TestClient) -> None:
415
416
response = client.get("/api/meta")
417
assert response.status_code == 200
418
- assert response.json() == {"version": _sqlmesh_version(), "has_running_task": False}
+ assert response.json() == {
419
+ "version": _sqlmesh_version(),
420
+ "has_running_task": False,
421
+ "node_colors": {},
422
+ }
423
424
425
def test_modules(client: TestClient) -> None:
0 commit comments