Skip to content

Commit

Permalink
fix: flaky test_copy_dash test in dashboard_tests.py (#10021)
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro committed Jun 9, 2020
1 parent 315518d commit 526ee3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/dashboard_tests.py
Expand Up @@ -235,7 +235,7 @@ def test_copy_dash(self, username="admin"):
# 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"):
Expand Down

0 comments on commit 526ee3c

Please sign in to comment.