Skip to content

Commit

Permalink
Merge pull request #40 from johnchildren/remove-extra-deps-constraint
Browse files Browse the repository at this point in the history
Removes extra-deps requirement
  • Loading branch information
aviaviavi authored Apr 5, 2019
2 parents d7e4b39 + 880b734 commit 98d15c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Testing/CurlRunnings/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ instance Show CaseResult where
T.unpack $ makeRed "[FAIL] " <>
name c <>
"\n" <>
mconcat (map ((\s -> "\nAssertion failed: " <> s) . (<> "\n") . pShow) failures)
mconcat (map ((\s -> "\nAssertion failed: " <> s) . (<> "\n") . (T.pack . show)) failures)

-- | A wrapper type around a set of test cases. This is the top level spec type
-- that we parse a test spec file into
Expand Down
3 changes: 1 addition & 2 deletions stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ packages:
# Dependency packages to be pulled from upstream that are not in the resolver
# (e.g., acme-missiles-0.3)
# extra-deps: []
extra-deps:
- pretty-simple-2.1.0.1
extra-deps: []

# Override default flag values for local packages and extra-deps
# flags: {}
Expand Down

0 comments on commit 98d15c5

Please sign in to comment.