update test for slightly different variable names under ghc8

This commit is contained in:
Andrei Barbu 2017-03-06 09:30:42 -05:00
parent de595bdb7e
commit b0ae7ce501

View File

@ -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"]