From c112800081ecea16bc4b38d1908e8186eccd71e4 Mon Sep 17 00:00:00 2001 From: shum Date: Wed, 3 Jun 2026 15:23:28 +0000 Subject: [PATCH] tests: provide namesConfig = Nothing in smpServerCfg Follow-up to the simplexmq pin bump (ee0a45e9). The new namesConfig :: Maybe NamesConfig field on ServerConfig (introduced in simplexmq's namespace branch) needs to appear in the test fixture's record literal, otherwise the test suite fails to compile under -Werror. Disabled by default (Nothing). --- tests/ChatClient.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ChatClient.hs b/tests/ChatClient.hs index ede3c1f2a2..79345d7858 100644 --- a/tests/ChatClient.hs +++ b/tests/ChatClient.hs @@ -581,6 +581,7 @@ smpServerCfg = smpAgentCfg = defaultSMPClientAgentConfig, allowSMPProxy = True, serverClientConcurrency = 16, + namesConfig = Nothing, information = Nothing, startOptions = StartOptions {maintenance = False, compactLog = False, logLevel = LogError, skipWarnings = False, confirmMigrations = MCYesUp} }