diff --git a/CHANGES.rst b/CHANGES.rst index a698e41..65d0f46 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,7 @@ in progress - Update to pandas 2.0 and requests 2.26 - CI: Update to Grafana 8.5.27, 9.5.8, and 10.1.1 - Grafana 9.3: Work around delete folder operation returning empty body +- Grafana 9.5: Use standard UUIDs instead of short UIDs 2023-07-30 0.15.2 ================= diff --git a/tests/test_commands.py b/tests/test_commands.py index 303c9c8..4cdb0e2 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -484,7 +484,7 @@ def test_explore_dashboards_empty_annotations(create_datasource, create_dashboar assert len(data) == 1 dashboard = data[0] assert dashboard["dashboard"]["title"] == "foo" - assert len(dashboard["dashboard"]["uid"]) == 9 + assert len(dashboard["dashboard"]["uid"]) == 36 assert "datasources" not in dashboard assert "datasources_missing" not in dashboard