Skip to content

Commit 4e04a9b

Browse files
committed
symbol d was not definied in this testeset resulting in a error
1 parent 1f1e52f commit 4e04a9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/rewrite.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ end
7777
@test r_pow2(a+b) === 1
7878

7979
r_mix = @rule (~x + (~y)*(~!c))^(~!m) => ~m + ~c
80-
@test r_mix((a + b*c)^d) === c + d
80+
@test r_mix((a + b*c)^2) === 2 + c
8181
@test r_mix((a + b*c)) === 1 + c
8282
@test r_mix((a + b)) === 2 #1+1
8383
end

0 commit comments

Comments
 (0)