From acc1cecef8a1a36612ef5f033afaa907bba41172 Mon Sep 17 00:00:00 2001 From: Taylor Turner Date: Tue, 14 Nov 2023 12:21:34 -0500 Subject: [PATCH] black formatting (#1067) --- dataprofiler/tests/plugins/__init__.py | 0 dataprofiler/tests/plugins/test_plugins.py | 4 +++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 dataprofiler/tests/plugins/__init__.py diff --git a/dataprofiler/tests/plugins/__init__.py b/dataprofiler/tests/plugins/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/dataprofiler/tests/plugins/test_plugins.py b/dataprofiler/tests/plugins/test_plugins.py index 14b0c77e0..ec148a526 100644 --- a/dataprofiler/tests/plugins/test_plugins.py +++ b/dataprofiler/tests/plugins/test_plugins.py @@ -17,7 +17,9 @@ def test_plugin(): expected_default_dict = defaultdict(dict) expected_default_dict["test"]["mock_test"] = test_plugin - self.assertDictEqual(expected_default_dict, mock_plugin_dict) + self.assertDictEqual( + expected_default_dict["test"], mock_plugin_dict["test"] + ) test_get_dict = get_plugins("test") self.assertDictEqual({"mock_test": test_plugin}, test_get_dict)