Skip to content

Commit 6a68db5

Browse files
committed
fix another test
1 parent 7086676 commit 6a68db5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/nf.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ using SymbolicUtils: polynormalize
33
@testset "polyform" begin
44
@syms a b c d
55
@test polynormalize(a * (b + -1 * c) + -1 * (b * a + -1 * c * a)) == 0
6-
@eqtest polynormalize(sin((a+b)^2)^2) == sin(a^2+b^2+2*a*b)^2
7-
# fixme: can this be made faster?
6+
@eqtest simplify(polynormalize(sin((a+b)^2)^2)) == simplify(sin(a^2+2*(b*a)+b^2)^2)
87
@test simplify(polynormalize(sin((a+b)^2)^2 + cos((a+b)^2)^2)) == 1
98
end

0 commit comments

Comments
 (0)