chore: Migrate /superset/recent_activity/<user_id>/ to /api/v1/ (#22789)

This commit is contained in:
Jack Fragassi
2023-01-25 01:26:50 -08:00
committed by GitHub
parent 6f0fed77cf
commit 050cbe938f
17 changed files with 519 additions and 126 deletions

View File

@@ -756,7 +756,7 @@ class TestDashboardApi(SupersetTestCase, ApiOwnersTestCaseMixin, InsertChartMixi
rv = self.get_assert_metric(uri, "get_list")
self.assertEqual(rv.status_code, 200)
data = json.loads(rv.data.decode("utf-8"))
self.assertEqual(data["count"], 5)
self.assertEqual(data["count"], 0)
@pytest.mark.usefixtures("create_created_by_gamma_dashboards")
def test_get_dashboards_created_by_me(self):