From 3f1f092db40761d7b8c54ae8bc21a98a743edb6e Mon Sep 17 00:00:00 2001 From: Daniel Rolls Date: Sat, 22 Feb 2025 22:50:13 +0000 Subject: [PATCH] Minor cleanup in TestHelper imports --- test/TestHelpers.hs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test/TestHelpers.hs b/test/TestHelpers.hs index 58502e4..50fc151 100644 --- a/test/TestHelpers.hs +++ b/test/TestHelpers.hs @@ -1,10 +1,9 @@ module TestHelpers where -import Prelude hiding (last, putStrLn, readFile, reverse, tail, unlines, words) -import Data.Bool (bool) -import Data.Text (isInfixOf, last, reverse, tail, Text(), unpack, unlines, words) -import Data.Text.IO (putStrLn, readFile) -import Test.Hspec (Expectation(), expectationFailure, it, shouldBe, shouldContain) +import Prelude hiding (readFile, unlines, words) +import Data.Text (Text(), unpack, unlines, words) +import Data.Text.IO (readFile) +import Test.Hspec (Expectation(), expectationFailure, shouldBe, shouldContain) import Options import Shellify import TemplateGeneration