Skip to content

Commit a577254

Browse files
msoosethblishko
andauthored
Update test/EVM/Expr/ExprTests.hs
Co-authored-by: blishko <blishko@argot.org>
1 parent 481620b commit a577254

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/EVM/Expr/ExprTests.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ basicSimplificationTests = testGroup "Basic simplification tests"
287287
assertEqual "~x + 1 is negation" (Sub (Lit 0) (Var "x")) simp
288288
, testCase "simp-xor-maxlit-plus1" $ do
289289
let simp = Expr.simplify $ Add (Lit 1) (Xor (Lit Expr.maxLit) (Var "x"))
290-
assertEqual "xor(maxLit, x) + 1 is negation" simp (Sub (Lit 0) (Var "x"))
290+
assertEqual "xor(maxLit, x) + 1 is negation" (Sub (Lit 0) (Var "x")) simp
291291
]
292292

293293
propSimplificationTests :: TestTree

0 commit comments

Comments
 (0)