Skip to content

Commit 6d01bb3

Browse files
authored
fix test on 32-bit
1 parent fa48c49 commit 6d01bb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/strings/basic.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -874,8 +874,8 @@ end
874874
end
875875

876876
@testset "return type infers to `Int`" begin
877-
@test all(==(Int64), Base.return_types(prevind, Tuple{AbstractString, Vararg}))
878-
@test all(==(Int64), Base.return_types(nextind, Tuple{AbstractString, Vararg}))
877+
@test all(==(Int), Base.return_types(prevind, Tuple{AbstractString, Vararg}))
878+
@test all(==(Int), Base.return_types(nextind, Tuple{AbstractString, Vararg}))
879879
end
880880
end
881881

0 commit comments

Comments
 (0)