Skip to content

Commit

Permalink
fix Kore.Simplify.Predicate tests
Browse files Browse the repository at this point in the history
  • Loading branch information
develop7 authored and Andrei Dziahel committed Jul 15, 2022
1 parent b7f5bb9 commit 23f4563
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kore/test/Test/Kore/Simplify/Predicate.hs
Expand Up @@ -254,7 +254,7 @@ test_simplify =
)
)
)
[[fromEquals_ (Mock.f Mock.a) (Mock.g (mkElemVar t))]]
[[fromEquals_ (Mock.g (mkElemVar t)) (Mock.f Mock.a)]]
, (test "invalid assignment")
((fromExists x) (fromEquals_ (mkElemVar x) (Mock.f $ mkElemVar x)))
[
Expand Down Expand Up @@ -327,7 +327,7 @@ test_simplify =
]
, (test "variable-variable assignment")
(fromEquals_ (mkElemVar x) (mkElemVar y))
[[fromEquals_ (mkElemVar x) (mkElemVar y)]]
[[fromEquals_ (mkElemVar y) (mkElemVar x)]]
]
, testGroup
"\\in"
Expand Down

0 comments on commit 23f4563

Please sign in to comment.