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 251abfb commit 01d9f50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/shifted_negative_numbers_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@
@test_opt check_vector(M, [s - 1], [s])

# Test that those functions are not allocating
@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 @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(getshift($M))) === 0

p = [s - 1]
Expand Down

0 comments on commit 01d9f50

Please sign in to comment.