From f15de1c17b6510078d9dfb01bfd7b58358056427 Mon Sep 17 00:00:00 2001 From: Lucas Vieira Date: Thu, 26 Mar 2026 10:05:34 -0300 Subject: [PATCH] fix: use [fibp] config section for test server --- test/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers.ts b/test/helpers.ts index be100fa..0138060 100644 --- a/test/helpers.ts +++ b/test/helpers.ts @@ -134,7 +134,7 @@ export async function startTestServer( // Write config file. const configPath = path.join(dataDir, "fila.toml"); - let config = `[server]\nlisten_addr = "${addr}"\n`; + let config = `[fibp]\nlisten_addr = "${addr}"\n`; if (opts?.extraConfig) { config += opts.extraConfig + "\n"; }