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:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user