Skip to content

Commit

Permalink
fix tests on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bvdmitri committed Jun 10, 2024
1 parent 65fa11a commit c787986
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/symmetric_negative_definite_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
@test @inferred(is_flat(M)) === false
@test @inferred(get_embedding(M)) === Euclidean(size, size; field=ℝ)

@test @allocated(representation_size(M)) === 0
@test @allocated(manifold_dimension(M)) === 0
@test @allocated(injectivity_radius(M)) === 0
@test @allocated(is_flat(M)) === 0
@test @allocated(get_embedding(M)) === 0
@test @eval(@allocated(representation_size($M))) === 0
@test @eval(@allocated(manifold_dimension($M))) === 0
@test @eval(@allocated(injectivity_radius($M))) === 0
@test @eval(@allocated(is_flat($M))) === 0
@test @eval(@allocated(get_embedding($M))) === 0

@test_opt representation_size(M)
@test_opt manifold_dimension(M)
Expand Down

0 comments on commit c787986

Please sign in to comment.