From f449ad60ad3f6cb2998332f2e4912de2fbd3df28 Mon Sep 17 00:00:00 2001 From: Mats Rauhala Date: Thu, 20 Aug 2026 19:35:40 +0300 Subject: [PATCH] Fix plan: OverloadedStrings pragmas in test specs --- docs/superpowers/plans/2026-08-20-concurrent-runtime.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/superpowers/plans/2026-08-20-concurrent-runtime.md b/docs/superpowers/plans/2026-08-20-concurrent-runtime.md index 521a99c..7764720 100644 --- a/docs/superpowers/plans/2026-08-20-concurrent-runtime.md +++ b/docs/superpowers/plans/2026-08-20-concurrent-runtime.md @@ -424,6 +424,7 @@ git commit -m "Add Runtime.Connection reader and writer actions" `test/RuntimeSpec.hs`: ```haskell +{-# LANGUAGE OverloadedStrings #-} module RuntimeSpec (spec) where import Control.Concurrent (threadDelay) @@ -577,6 +578,7 @@ git commit -m "Run controllers on their own threads over the bus" `test/SupervisorSpec.hs`: ```haskell +{-# LANGUAGE OverloadedStrings #-} module SupervisorSpec (spec) where import Control.Concurrent (newEmptyMVar, putMVar, readMVar, threadDelay)