Skip to content

Commit ad2eb80

Browse files
Staging/main/0.10.7 (#1068)
* black formatting (#1067) * Update version 0.10.7
1 parent 302a458 commit ad2eb80

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

dataprofiler/tests/plugins/__init__.py

Whitespace-only changes.

dataprofiler/tests/plugins/test_plugins.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ def test_plugin():
1717

1818
expected_default_dict = defaultdict(dict)
1919
expected_default_dict["test"]["mock_test"] = test_plugin
20-
self.assertDictEqual(expected_default_dict, mock_plugin_dict)
20+
self.assertDictEqual(
21+
expected_default_dict["test"], mock_plugin_dict["test"]
22+
)
2123

2224
test_get_dict = get_plugins("test")
2325
self.assertDictEqual({"mock_test": test_plugin}, test_get_dict)

dataprofiler/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
MAJOR = 0
44
MINOR = 10
5-
MICRO = 6
5+
MICRO = 7
66
POST = None # otherwise None
77

88
VERSION = "%d.%d.%d" % (MAJOR, MINOR, MICRO)

0 commit comments

Comments
 (0)