Skip to content

Commit 7ad23c3

Browse files
committed
test: clean up
1 parent d9d05e2 commit 7ad23c3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/test_buffered_evaluation.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ end
3535
operators = OperatorEnum(; binary_operators=[+, *], unary_operators=[sin])
3636

3737
# Test different tree structures
38-
@testset "Tree type: \$description" for (description, tree) in [
39-
("Single feature", Node(Float64; feature=1)),
40-
("Constant", Node(Float64; val=1.5)),
41-
("Binary op", Node(; op=1, l=Node(Float64; feature=1), r=Node(Float64; val=2.0))),
42-
("Unary op", Node(; op=1, l=Node(Float64; feature=1))),
38+
for tree in [
39+
Node(Float64; feature=1),
40+
Node(Float64; val=1.5),
41+
Node(; op=1, l=Node(Float64; feature=1), r=Node(Float64; val=2.0)),
42+
Node(; op=1, l=Node(Float64; feature=1)),
4343
]
4444
# Regular evaluation
4545
result1, ok1 = eval_tree_array(tree, X, operators)

0 commit comments

Comments
 (0)