summaryrefslogtreecommitdiffstats
path: root/dovetail/tests/unit/utils/test_dovetail_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'dovetail/tests/unit/utils/test_dovetail_config.py')
-rw-r--r--dovetail/tests/unit/utils/test_dovetail_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dovetail/tests/unit/utils/test_dovetail_config.py b/dovetail/tests/unit/utils/test_dovetail_config.py
index c7ac5b96..8e835f49 100644
--- a/dovetail/tests/unit/utils/test_dovetail_config.py
+++ b/dovetail/tests/unit/utils/test_dovetail_config.py
@@ -39,7 +39,7 @@ class DovetailConfigTesting(unittest.TestCase):
dovetail_cfg.set_leaf_dict(dict_to_test, ['aa', 'bb', 'cc'], 'val')
- self.assertEquals({'aa': {'bb': {'cc': 'val'}}}, dict_to_test)
+ self.assertEqual({'aa': {'bb': {'cc': 'val'}}}, dict_to_test)
@patch.object(DovetailConfig, 'set_leaf_dict')
@patch.object(DovetailConfig, 'dovetail_config')