remove leftovers from removed TestSuite build flag

Test suite is always built, so this can be simplified.
This commit is contained in:
Joey Hess 2018-11-19 12:39:16 -04:00
parent 1f9f220816
commit 83109affd1
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
4 changed files with 15 additions and 19 deletions

View file

@ -65,7 +65,7 @@ git_annex' command params = do
-- catch all errors, including normally fatal errors
try run ::IO (Either SomeException ())
where
run = GitAnnex.run dummyTestOptParser Nothing (command:"-q":params)
run = GitAnnex.run dummyTestOptParser (\_ -> noop) (command:"-q":params)
dummyTestOptParser = pure mempty
{- Runs git-annex and returns its output. -}