1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 15:39:43 +00:00

Adding tests for overrided settings in imported_configs

This commit is contained in:
Davide Laezza
2019-04-22 14:52:24 +02:00
parent 124336ed57
commit 9925ec3928
3 changed files with 173 additions and 17 deletions

View File

@@ -27,7 +27,7 @@ class SubsetTestCase(TestCase):
supValue = sup[subKey]
if isinstance(subValue, str):
self.assertEquals(subValue, supValue)
self.assertEqual(subValue, supValue)
continue
if isinstance(subValue, dict):
@@ -41,7 +41,7 @@ class SubsetTestCase(TestCase):
for subItem in subValue
))
except TypeError:
self.assertEquals(subValue, supValue)
self.assertEqual(subValue, supValue)
def clean(path):