diff options
Diffstat (limited to 'tests/test_config.py')
-rw-r--r-- | tests/test_config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index 37f057e..7851019 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -13,10 +13,10 @@ class TestConfig(unittest.TestCase): self.assertIn('backend', self.config.data) def test_load_config_from_file(self): - self.config.load('tests/data/simple_config.yaml') + self.config.load('tests/data/test_config.yaml') self.assertEqual( self.config.config_fn, - 'tests/data/simple_config.yaml' + 'tests/data/test_config.yaml' ) self.assertIn('backend', self.config.data) self.assertEqual(self.config.backend, 'none') |