Skip to content

Commit 9b9fa9d

Browse files
committed
Fix method call in test
1 parent e147785 commit 9b9fa9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_evaluation.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ for turbo in [false, true], T in [Float16, Float32, Float64]
8282
tree = convert(Node{T}, tree)
8383
truth = cos(cos(T(3.0f0)))
8484
@test DynamicExpressions.EvaluateEquationModule.deg1_l1_ll0_eval(
85-
tree, [zero(T)]', cos, cos, operators, Val(turbo)
85+
tree, [zero(T)]', cos, cos, Val(turbo)
8686
)[1][1] truth
8787

8888
# op(<constant>, <constant>)
@@ -91,7 +91,7 @@ for turbo in [false, true], T in [Float16, Float32, Float64]
9191
tree = convert(Node{T}, tree)
9292
truth = T(3.0f0) + T(4.0f0)
9393
@test DynamicExpressions.EvaluateEquationModule.deg2_l0_r0_eval(
94-
tree, [zero(T)]', (+), operators, Val(turbo)
94+
tree, [zero(T)]', (+), Val(turbo)
9595
)[1][1] truth
9696

9797
# op(op(<constant>, <constant>))
@@ -100,7 +100,7 @@ for turbo in [false, true], T in [Float16, Float32, Float64]
100100
tree = convert(Node{T}, tree)
101101
truth = cos(T(3.0f0) + T(4.0f0))
102102
@test DynamicExpressions.EvaluateEquationModule.deg1_l2_ll0_lr0_eval(
103-
tree, [zero(T)]', cos, (+), operators, Val(turbo)
103+
tree, [zero(T)]', cos, (+), Val(turbo)
104104
)[1][1] truth
105105

106106
# Test for presence of NaNs:

0 commit comments

Comments
 (0)