Skip to content

Commit f582b40

Browse files
committed
Make test comparison less weird
1 parent 7bc9972 commit f582b40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Properties/HashMapLazy.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ eq :: (Eq a, Eq k, Hashable k, Ord k, Show a, Show k)
567567
-- way
568568
-> [(k, v)] -- ^ Initial content of the 'HashMap' and 'Model'
569569
-> Property
570-
eq f g xs = g (HM.fromList xs) === f (M.fromList xs)
570+
eq f g xs = f (M.fromList xs) === g (HM.fromList xs)
571571

572572
infix 4 `eq`
573573

0 commit comments

Comments
 (0)