diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2011-09-23 07:46:30 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2011-09-23 07:46:30 +0100 |
commit | 0224b8091e6b489a914a14e79147973fb2a21ecf (patch) | |
tree | a8585001a24c4f5d175620a3de370963858d741b | |
parent | e3e2babba5a84b3ffc66c93e4d39db7f6cc3d599 (diff) | |
download | haskell-0224b8091e6b489a914a14e79147973fb2a21ecf.tar.gz |
Remove quotes from echo'd comments in GHCi script
This leads to gratuitous Windows/Unix differences
which aren't germane to the test
-rw-r--r-- | testsuite/tests/ghci/scripts/ghci038.script | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/ghci/scripts/ghci038.script b/testsuite/tests/ghci/scripts/ghci038.script index 1b01a031bb..c38e016de5 100644 --- a/testsuite/tests/ghci/scripts/ghci038.script +++ b/testsuite/tests/ghci/scripts/ghci038.script @@ -2,11 +2,11 @@ :show imports import Prelude :show imports -:!echo -- map in scope due to explicit 'import Prelude' +:!echo -- map in scope due to explicit import Prelude :t map import Prelude () :show imports -:!echo -- still in scope, 'import Prelude ()' is subsumed by 'import Prelude' +:!echo -- still in scope, import Prelude () is subsumed by import Prelude :t map :module -Prelude :show imports |