From 7495aa7052f5f488401fe77013dbd8d6948c5a49 Mon Sep 17 00:00:00 2001 From: albert-de-montserrat Date: Sun, 17 Dec 2023 19:03:58 +0100 Subject: [PATCH] fixup --- test/test_CellArrays2D.jl | 2 +- test/test_CellArrays3D.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_CellArrays2D.jl b/test/test_CellArrays2D.jl index ef53e913..9022be64 100644 --- a/test/test_CellArrays2D.jl +++ b/test/test_CellArrays2D.jl @@ -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 diff --git a/test/test_CellArrays3D.jl b/test/test_CellArrays3D.jl index f8bc1855..e38fd7fb 100644 --- a/test/test_CellArrays3D.jl +++ b/test/test_CellArrays3D.jl @@ -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