From ffbdd8744ec501f97d4f817ddf430a1b65e3fd8b Mon Sep 17 00:00:00 2001 From: George Thomas Date: Wed, 7 Jan 2026 01:04:34 +0000 Subject: [PATCH] Update temporary width override This matches the usual setup on my main development machine. --- haskell/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell/Main.hs b/haskell/Main.hs index f6a4f1e..d754bf5 100644 --- a/haskell/Main.hs +++ b/haskell/Main.hs @@ -22,7 +22,7 @@ import System.Console.Terminal.Size qualified as Terminal.Size main :: IO () main = do -- terminalWidth <- Terminal.Size.width <<$>> Terminal.Size.size -- TODO this doesn't work in GHCID or GHCIWatch... - terminalWidth <- pure $ Just 60 + terminalWidth <- pure $ Just 62 putStrLn $ drawTree $ show <$> getTestTree tests TL.putStrLn . displayTestResultsConsole terminalWidth =<< runTests () tests