Skip to content

Commit 692a87a

Browse files
committed
Try and get tests to pass on 1.0.
1 parent 8652505 commit 692a87a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/runtests.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1393,7 +1393,10 @@ end
13931393
@testset "Pointer" begin
13941394
A = rand(4, 5)
13951395
O = OffsetArray(@view(A[1:3,1:2:5]), -1:1, -1:1)
1396-
@test pointer(A) === pointer(O')
1396+
@test pointer(A) === pointer(O)
1397+
if VERSION v"1.5"
1398+
@test pointer(A) === pointer(O')
1399+
end
13971400
end
13981401

13991402
include("origin.jl")

0 commit comments

Comments
 (0)