diff --git a/pulpo_messaging/tests/test_config.py b/pulpo_messaging/tests/test_config.py index 958041b..d9e614f 100644 --- a/pulpo_messaging/tests/test_config.py +++ b/pulpo_messaging/tests/test_config.py @@ -22,13 +22,13 @@ def test_config_set_nested(self): self.assertEqual(config.get('k.k2a.k3'), 'v1') def test_load_config_from_file(self): - config = Config(json_file_path='./pulpo-config.json') + config = Config(json_file_path='./pulpo-config-fqa.json') self.assertEqual(config.get('shutdown_after_number_of_empty_iterations'), 7) self.assertEqual(config.get('file_queue_adapter.base_path'), '/tmp/pulpo/fqa') self.assertEqual(config.get('file_queue_adapter').get('base_path'), '/tmp/pulpo/fqa') def test_load_config_from_file_then_apply_args(self): - config = Config(json_file_path='./pulpo-config.json') + config = Config(json_file_path='./pulpo-config-fqa.json') self.assertEqual(config.get('shutdown_after_number_of_empty_iterations'), 7) self.assertEqual(config.get('file_queue_adapter.base_path'), '/tmp/pulpo/fqa')