From 1be3e0cb54fea713f26b5c44a670602e317e906d Mon Sep 17 00:00:00 2001 From: David Aaron Suddjian Date: Thu, 17 Feb 2022 13:38:34 -0800 Subject: [PATCH] making ci happy --- superset-frontend/src/profile/components/fixtures.tsx | 1 + tests/integration_tests/security_tests.py | 1 + 2 files changed, 2 insertions(+) diff --git a/superset-frontend/src/profile/components/fixtures.tsx b/superset-frontend/src/profile/components/fixtures.tsx index 90e97da22c762..e721b6dfa7510 100644 --- a/superset-frontend/src/profile/components/fixtures.tsx +++ b/superset-frontend/src/profile/components/fixtures.tsx @@ -40,6 +40,7 @@ export const user: UserWithPermissionsAndRoles = { userId: 5, email: 'alpha@alpha.com', isActive: true, + isAnonymous: false, permissions: { datasource_access: ['table1', 'table2'], database_access: ['db1', 'db2', 'db3'], diff --git a/tests/integration_tests/security_tests.py b/tests/integration_tests/security_tests.py index 9dca5ac51375c..0cdf0d786b0e2 100644 --- a/tests/integration_tests/security_tests.py +++ b/tests/integration_tests/security_tests.py @@ -907,6 +907,7 @@ def test_views_are_secured(self): ["LocaleView", "index"], ["AuthDBView", "login"], ["AuthDBView", "logout"], + ["CurrentUserRestApi", "me"], ["Dashboard", "embedded"], ["R", "index"], ["Superset", "log"],