Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
Fix splat import on Julia 1.8 and below
Browse files Browse the repository at this point in the history
  • Loading branch information
mofeing committed Aug 24, 2023
1 parent 87f3def commit 4ceaa30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ using ImmutableArrays
@testset "tests for $(typeof(x))" for x in [arr, view]
immarr = ImmutableArray(x)

@test all(splat(==), zip(immarr, x))
@test all(Base.splat(==), zip(immarr, x))
@test parent(immarr) === x

@testset "AbstractArray interface" begin
Expand Down

0 comments on commit 4ceaa30

Please sign in to comment.