Fix ambiguity error in Opposite tests
For some reason cabal wasn't properly recompiling this file locally to pick up the introduction of an ambiguity error.
This commit is contained in:
parent
0373e06c02
commit
14997bc1a3
2 changed files with 4 additions and 2 deletions
|
|
@ -57,14 +57,14 @@ test = testGroup "Xanthous.Data"
|
|||
|
||||
, testGroup "Corner"
|
||||
[ testGroup "instance Opposite"
|
||||
[ testProperty "involutive" $ \corner ->
|
||||
[ testProperty "involutive" $ \(corner :: Corner) ->
|
||||
opposite (opposite corner) === corner
|
||||
]
|
||||
]
|
||||
|
||||
, testGroup "Edge"
|
||||
[ testGroup "instance Opposite"
|
||||
[ testProperty "involutive" $ \edge ->
|
||||
[ testProperty "involutive" $ \(edge :: Edge) ->
|
||||
opposite (opposite edge) === edge
|
||||
]
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue