From eb4856820f6ac193b74c441e53279e47492899ba Mon Sep 17 00:00:00 2001 From: Lucas Vieira Date: Thu, 26 Mar 2026 10:05:33 -0300 Subject: [PATCH] fix: use [fibp] config section for test server --- tests/conftest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 404b00d..bf136f1 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -272,7 +272,7 @@ def server() -> Generator[TestServer, None, None]: # Write config file for the server. config_path = os.path.join(data_dir, "fila.toml") with open(config_path, "w") as f: - f.write(f'[server]\nlisten_addr = "{addr}"\n') + f.write(f'[fibp]\nlisten_addr = "{addr}"\n') env = {**os.environ, "FILA_DATA_DIR": os.path.join(data_dir, "db")} process = subprocess.Popen( @@ -314,7 +314,7 @@ def tls_server() -> Generator[TestServer, None, None]: config_path = os.path.join(data_dir, "fila.toml") with open(config_path, "w") as f: f.write( - f'[server]\n' + f'[fibp]\n' f'listen_addr = "{addr}"\n' f'\n' f'[tls]\n' @@ -370,7 +370,7 @@ def auth_server() -> Generator[TestServer, None, None]: config_path = os.path.join(data_dir, "fila.toml") with open(config_path, "w") as f: f.write( - f'[server]\n' + f'[fibp]\n' f'listen_addr = "{addr}"\n' f'bootstrap_apikey = "{bootstrap_key}"\n' )