From 42c1888ae75dfe0bca3cfd3847a92c115bdc6cd0 Mon Sep 17 00:00:00 2001 From: Jishnu Bhattacharya Date: Wed, 27 Nov 2024 17:26:39 +0530 Subject: [PATCH] check array equality instead of egal in OffsetArray test --- test/offsetarray.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/offsetarray.jl b/test/offsetarray.jl index 913b5dda5e632..8e2ee33c49ed6 100644 --- a/test/offsetarray.jl +++ b/test/offsetarray.jl @@ -922,6 +922,6 @@ end B = reshape(A0, -10:-9, 9:10) @test isa(B, OffsetArray{Int,2}) - @test parent(B) === A0 + @test parent(B) == A0 @test axes(B) == Base.IdentityUnitRange.((-10:-9, 9:10)) end