Skip to content

Commit

Permalink
test: fix template expression call
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Oct 20, 2024
1 parent 121d20b commit 3d210c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/test_template_expression.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@

# We can evaluate with this too:
cX = [1.0 2.0; 3.0 4.0; 5.0 6.0]
out, completed = st_expr(cX)
@test completed
out = st_expr(cX)
@test out [sin(1.0) + cos(5.0)^2, sin(2.0) + cos(6.0)^2]

# And also check the contents:
Expand Down

0 comments on commit 3d210c6

Please sign in to comment.