summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamil Staps2017-11-25 13:30:18 +0100
committerCamil Staps2017-11-25 13:30:18 +0100
commit03a222000f87bc275a72b355d5b3c433e74f0364 (patch)
tree91f1b52f7c124a869989fd48480628cb4401ad9f
parentMerge branch '2-quickcheck-property-zwart-wit-mag-geen-wit-zwart-stuk-verplaa... (diff)
Fix merge problem
-rw-r--r--test/Test.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Test.hs b/test/Test.hs
index 3db8aa3..983b48d 100644
--- a/test/Test.hs
+++ b/test/Test.hs
@@ -119,7 +119,7 @@ prop_move_not_result_check = atAnyTwoStates (\b1 b2 ->
Black -> not (check Black b2)
)
-prop_dont_touch_my_pieces :: PGN -> Bool
+prop_dont_touch_my_pieces :: PGN -> Property
prop_dont_touch_my_pieces = atAnyTwoStates (\b1 b2 -> notMoved (turn b2) b1 b2)
where
notMoved :: Color -> Board -> Board -> Bool