fix: missing shared color in mixed timeseries (#27403)

(cherry picked from commit 9ced2552db)
This commit is contained in:
JUST.in DO IT
2024-03-07 10:04:49 -08:00
committed by Michael S. Molina
parent 2060e545e6
commit 5b6e5e475e
3 changed files with 9 additions and 4 deletions

View File

@@ -28,4 +28,8 @@ def test_csrf_not_exempt(app_context: None) -> None:
"""
Test that REST API is not exempt from CSRF.
"""
assert csrf._exempt_blueprints == {"MenuApi", "SecurityApi", "OpenApi"}
assert {blueprint.name for blueprint in csrf._exempt_blueprints} == {
"MenuApi",
"SecurityApi",
"OpenApi",
}