fix(tests/lua/hop1): incorrect assertion

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2014-08-03 20:06:50 -07:00
parent f3cb5f2f84
commit 63d478c63f

View file

@ -21,4 +21,4 @@ assert(not match(Var(0)(x, x), f(x, f(x, y))))
assert(not match(Var(0)(x), f(x, y)))
tst_match(Pi(x, y, Var(2)(x)), Pi(x, y, f(f(x))))
tst_match(Fun(x, y, Var(2)(x)), Fun(x, y, f(f(x))))
assert(match(Pi(x, Var(2)(x)), Pi(x, y, f(f(x)))))
assert(not match(Pi(x, Var(2)(x)), Pi(x, y, f(f(x)))))