Skip to content

Commit

Permalink
Remove string-interpolate
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwebb76 committed Dec 17, 2024
1 parent 55af54b commit d0dd2b1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/Test/Tasty/Golden/Extra/GoldenVsToYAML.hs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ where
import Data.Aeson
import Data.Aeson qualified as Aeson
import Data.ByteString qualified as BL
import Data.String.Interpolate (i)
import Data.Yaml qualified as Yaml
import Test.Tasty
import Test.Tasty.Discover qualified as Discover
Expand Down Expand Up @@ -94,7 +93,7 @@ orFailTest :: FilePath -> Either Yaml.ParseException a -> IO a
orFailTest fp =
either
( fail
. ([i|Failed to decode file #{fp}|] <>)
. (\t -> mconcat ["Failed to decode file ", fp, "\n", t])
. Yaml.prettyPrintParseException
)
pure
1 change: 0 additions & 1 deletion tasty-golden-extra.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ common deps
, bytestring >=0.10.12
, pretty-show ^>=1.10
, pretty-simple ^>=4.1
, string-interpolate ^>=0.3.4.0
, tasty ^>=1.5
, tasty-discover ^>=5.0.0
, tasty-golden ^>=2.3.5
Expand Down

0 comments on commit d0dd2b1

Please sign in to comment.