Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
fehrenbach committed Jun 5, 2018
1 parent 1385430 commit fa5b87a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Main.purs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ main = do

log "fromFoldable (a <> b) = fromFoldable a <> fromFoldable b"
quickCheck' 1000 \ a (b :: Array (Tuple CollidingInt String)) ->
HashMap.fromFoldable (a <> b) === HashMap.fromFoldable a <> HashMap.fromFoldable b
HashMap.fromFoldable (A.nubBy (\x y -> fst x `compare` fst y) (a <> b)) === HashMap.fromFoldable a <> HashMap.fromFoldable b

log "map id = id"
quickCheck \ (a :: Array (Tuple CollidingInt Boolean)) ->
Expand Down

0 comments on commit fa5b87a

Please sign in to comment.