[tests] Fix, removing deprecated function for future Python release compatibility. (#8353)

* removing deprecated function for future Python release compatibility.

* also removed assertNotEquals per @dpgaspar
This commit is contained in:
Marcus
2019-10-21 07:49:12 -07:00
committed by Daniel Vaz Gaspar
parent 1e533db3a2
commit 4cfd6b3ce1
18 changed files with 315 additions and 315 deletions

View File

@@ -37,4 +37,4 @@ class MigrationTestCase(SupersetTestCase):
self.assertIn("filter_configs", params)
cfg = params["filter_configs"][0]
self.assertEquals(cfg.get("metric"), "foo")
self.assertEqual(cfg.get("metric"), "foo")