Skip to content

Commit 212ca12

Browse files
committed
Fix incorrect test
1 parent d88b42c commit 212ca12

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

test/ForwardTest.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -588,12 +588,9 @@ end
588588
end
589589

590590
@testset "evaluate product of Zero and power" begin
591-
a = Variable("a", Upper(1))
592-
b = Variable("b", Lower(2))
591+
p = dc.Power(Variable("a", Upper(1)), 2)
593592
z = Zero(Upper(1))
594593

595-
p = dc.BinaryOperation{dc.Mult}(a, b)
596-
597594
op1 = dc.BinaryOperation{dc.Mult}(p, z)
598595
op2 = dc.BinaryOperation{dc.Mult}(z, p)
599596

0 commit comments

Comments
 (0)