From a7703209f243d219ccf8e5107ebd2d65148a3fdd Mon Sep 17 00:00:00 2001 From: Efim Poberezkin <8711996+efim-poberezkin@users.noreply.github.com> Date: Mon, 27 Dec 2021 15:15:35 +0400 Subject: [PATCH] change tests port (fix for port 5000 now in use on macOS) (#165) --- tests/ChatClient.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ChatClient.hs b/tests/ChatClient.hs index eff8ff6c10..ded8b68bb4 100644 --- a/tests/ChatClient.hs +++ b/tests/ChatClient.hs @@ -33,13 +33,13 @@ testDBPrefix :: FilePath testDBPrefix = "tests/tmp/test" serverPort :: ServiceName -serverPort = "5000" +serverPort = "5001" opts :: ChatOpts opts = ChatOpts { dbFile = undefined, - smpServers = ["localhost:5000"] + smpServers = ["localhost:5001"] } termSettings :: VirtualTerminalSettings