summaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2012-07-31 16:36:30 +0200
committerJasper Van der Jeugt <m@jaspervdj.be>2012-07-31 16:36:30 +0200
commitdfb873f74831ff12a3aab8961d175e35214e15f1 (patch)
tree45003da18243141aef6bad9984c2739775fd26a6 /tests
parentdafe122baea8c4afb30b7faab399cab080abd5af (diff)
downloadstylish-haskell-dfb873f74831ff12a3aab8961d175e35214e15f1.tar.gz
Align imports after the start-parenthesis
See #7
Diffstat (limited to 'tests')
-rw-r--r--tests/StylishHaskell/Step/Imports/Tests.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/StylishHaskell/Step/Imports/Tests.hs b/tests/StylishHaskell/Step/Imports/Tests.hs
index 6da0af3..6b820f0 100644
--- a/tests/StylishHaskell/Step/Imports/Tests.hs
+++ b/tests/StylishHaskell/Step/Imports/Tests.hs
@@ -105,6 +105,6 @@ case04 = expected @=? testStep (step 80 Global) input'
expected = unlines
[ "import Data.Aeson.Types (FromJSON(..), ToJSON(..), Value(..), object,"
- , " parseEither, typeMismatch, (.!=), (.:), (.:?),"
- , " (.=))"
+ , " parseEither, typeMismatch, (.!=), (.:),"
+ , " (.:?), (.=))"
]