From a9336ed3c506c84965ff2a7c6657c3a3aceafc39 Mon Sep 17 00:00:00 2001
From: Jason Ray <jayray.net@gmail.com>
Date: Sun, 24 Dec 2023 10:53:39 -0500
Subject: [PATCH] update path to config file

---
 pulpo_messaging/tests/test_config.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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')