Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
albert-de-montserrat committed Dec 17, 2023
1 parent 8557c10 commit 7495aa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_CellArrays2D.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ environment!(model)

@testset "CellArrays 2D" begin
ni = 5, 5
A = @fill(false, ni..., celldims=(2,), eltype=Bool)
A = JustRelax.@fill(false, ni..., celldims=(2,), eltype=Bool)

@test @cell(A[1, 1, 1]) === false
@test (@allocated @cell A[1, 1, 1]) == 0
Expand Down
2 changes: 1 addition & 1 deletion test/test_CellArrays3D.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ environment!(model)

@testset "CellArrays 3D" begin
ni = 5, 5, 5
A = @fill(false, ni..., celldims=(2,), eltype=Bool)
A = JustRelax.@fill(false, ni..., celldims=(2,), eltype=Bool)

@test @cell(A[1, 1, 1, 1]) === false
@test (@allocated @cell A[1, 1, 1, 1]) == 0
Expand Down

0 comments on commit 7495aa7

Please sign in to comment.