From 526ee3c3dfc6ca8159e55c81e5fcc9a8d158db4e Mon Sep 17 00:00:00 2001 From: Ville Brofeldt <33317356+villebro@users.noreply.github.com> Date: Tue, 9 Jun 2020 13:29:22 +0300 Subject: [PATCH] fix: flaky test_copy_dash test in dashboard_tests.py (#10021) --- tests/dashboard_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dashboard_tests.py b/tests/dashboard_tests.py index 22aa375b7..164e9a1b6 100644 --- a/tests/dashboard_tests.py +++ b/tests/dashboard_tests.py @@ -235,7 +235,7 @@ class DashboardTests(SupersetTestCase): # exclude modified and changed_on attribute for index, slc in enumerate(orig_json_data["slices"]): for key in slc: - if key not in ["modified", "changed_on"]: + if key not in ["modified", "changed_on", "changed_on_humanized"]: self.assertEqual(slc[key], resp["slices"][index][key]) def test_set_dash_metadata(self, username="admin"):