From 4dcf1f8d15120b685c74e6105e8e01686b46a614 Mon Sep 17 00:00:00 2001 From: JRoberts <8711996+jr-simplex@users.noreply.github.com> Date: Mon, 9 May 2022 18:53:39 +0400 Subject: [PATCH] test: add missing fields to ServerConfig --- tests/ChatClient.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/ChatClient.hs b/tests/ChatClient.hs index 688ccabf77..b5a598bbcd 100644 --- a/tests/ChatClient.hs +++ b/tests/ChatClient.hs @@ -213,7 +213,9 @@ serverCfg = inactiveClientExpiration = Just defaultInactiveClientExpiration, caCertificateFile = "tests/fixtures/tls/ca.crt", privateKeyFile = "tests/fixtures/tls/server.key", - certificateFile = "tests/fixtures/tls/server.crt" + certificateFile = "tests/fixtures/tls/server.crt", + logStatsInterval = Just 86400, + logStatsStartTime = 0 } withSmpServer :: IO a -> IO a