summaryrefslogtreecommitdiff
path: root/Test.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-03-31 14:47:27 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-03-31 14:47:27 -0400
commit249c3bb84d6f3157c3012ee2120aaf8352f818f7 (patch)
treead23ff034b64698b2c97f783c9b720ca7a29160a /Test.hs
parente0d7d1eeafc7b3a699e91ec9faf3b75dc05ed908 (diff)
test: Fix --list-tests
Seems list order matters, I don't know why, but have reported it on #tasty
Diffstat (limited to 'Test.hs')
-rw-r--r--Test.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Test.hs b/Test.hs
index 5286bc6f6..e57c9021c 100644
--- a/Test.hs
+++ b/Test.hs
@@ -125,8 +125,8 @@ main ps = do
ingredients :: [Ingredient]
ingredients =
- [ rerunningTests [consoleTestReporter]
- , listingTests
+ [ listingTests
+ , rerunningTests [consoleTestReporter]
]
properties :: TestTree