|
@@ -17,7 +17,7 @@ class TestBrainLoader(unittest.TestCase):
|
|
|
|
|
|
def setUp(self):
|
|
|
# be sure the brain haven't been instantiated before
|
|
|
- Singleton._instances = {}
|
|
|
+ Singleton._instances = dict()
|
|
|
if "/Tests" in os.getcwd():
|
|
|
self.brain_to_test = os.getcwd() + os.sep + "brains/brain_test.yml"
|
|
|
else:
|
|
@@ -40,7 +40,7 @@ class TestBrainLoader(unittest.TestCase):
|
|
|
]
|
|
|
|
|
|
def tearDown(self):
|
|
|
- Singleton._instances = {}
|
|
|
+ Singleton._instances = dict()
|
|
|
|
|
|
def test_get_yaml_config(self):
|
|
|
"""
|