Skip to content

Commit

Permalink
set locale encoding to utf8 for plutus-example tests
Browse files Browse the repository at this point in the history
  • Loading branch information
James Browning committed Feb 24, 2022
1 parent 9e205ed commit cf1b5c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plutus-example/test/plutus-example-test.hs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ import Test.Tasty.Hedgehog (testProperty)
import Test.PlutusExample.Plutus
import Test.PlutusExample.ScriptData

import GHC.IO.Encoding

main :: IO ()
main =
main = do
setLocaleEncoding utf8
defaultMain plutusExampleTests

plutusExampleTests :: TestTree
Expand Down

0 comments on commit cf1b5c4

Please sign in to comment.