From b0ae7ce501637ee5af00b4615b58c10bef6ad340 Mon Sep 17 00:00:00 2001 From: Andrei Barbu Date: Mon, 6 Mar 2017 09:30:42 -0500 Subject: [PATCH] update test for slightly different variable names under ghc8 --- src/tests/IHaskell/Test/Eval.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/IHaskell/Test/Eval.hs b/src/tests/IHaskell/Test/Eval.hs index 54f9fbd2..545e5ce5 100644 --- a/src/tests/IHaskell/Test/Eval.hs +++ b/src/tests/IHaskell/Test/Eval.hs @@ -159,6 +159,6 @@ testEval = "putStrLn \"Привет!\"" `becomes` ["Привет!"] it "evaluates directives" $ do - ":typ 3" `becomes` ["3 :: forall a. Num a => a"] + ":typ 3" `becomes` ["3 :: forall t. Num t => t"] ":k Maybe" `becomes` ["Maybe :: * -> *"] ":in String" `pages` ["type String = [Char] \t-- Defined in \8216GHC.Base\8217"]