From b9cf447f6993888736e30e808f88b0fae5d9633d Mon Sep 17 00:00:00 2001 From: roypaulin Date: Fri, 3 Nov 2023 21:40:25 +0100 Subject: [PATCH] Check new expected field --- tests/test_dashboards.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_dashboards.py b/tests/test_dashboards.py index f0b1381..849ccae 100755 --- a/tests/test_dashboards.py +++ b/tests/test_dashboards.py @@ -18,7 +18,7 @@ def test_json_expected_fields(dashboard_json): j = dashboard_json # Look for well-known fields that the JSON must have expected_fields = ["uid", "title", "tags", "panels", "schemaVersion", - "version", "description", "links"] + "version", "description", "links", "__requires"] for ef in expected_fields: assert ef in j