forked from gentoo-haskell/gentoo-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-haskell/hackage-security: fix tests and relax aeson upperbound
The tests were failing for two reasons: 1. Old aeson upperbound 2. Failing unit-test in upstream The failing test is addressed in this issue](haskell/hackage-security#247) upstream. The rest of the tests pass using the newer aeson. Signed-off-by: Wolfgang E. Sanyer <[email protected]>
- Loading branch information
1 parent
30fefe3
commit 93151b0
Showing
2 changed files
with
20 additions
and
3 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
...ackage-security/files/hackage-security-0.6.0.1-disable-failing-aeson-canonical-test.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/tests/TestSuite.hs b/tests/TestSuite.hs | ||
index 598e151..f62f1c5 100644 | ||
--- a/tests/TestSuite.hs | ||
+++ b/tests/TestSuite.hs | ||
@@ -70,7 +70,7 @@ tests = testGroup "hackage-security" [ | ||
testProperty "prop_roundtrip_canonical" JSON.prop_roundtrip_canonical | ||
, testProperty "prop_roundtrip_pretty" JSON.prop_roundtrip_pretty | ||
, testProperty "prop_canonical_pretty" JSON.prop_canonical_pretty | ||
- , testProperty "prop_aeson_canonical" JSON.prop_aeson_canonical | ||
+ -- , testProperty "prop_aeson_canonical" JSON.prop_aeson_canonical | ||
] | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters