Skip to content
Snippets Groups Projects
Commit a309a3b4 authored by Iustin Pop's avatar Iustin Pop
Browse files

Fix display of results in ==? operator


Doh, this is exactly the opposite of what we wanted… good thing no
test failed so far :)

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
parent 92ad1f44
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ maxOpCodes = 16
(==?) :: (Show a, Eq a) => a -> a -> Property
(==?) x y = printTestCase
("Expected equality, but got mismatch\nexpected: " ++
show x ++ "\n but got: " ++ show y) (x == y)
show y ++ "\n but got: " ++ show x) (x == y)
infix 3 ==?
-- | Checks for inequality with proper annotation. The first argument
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment