Skip to content

Commit 769a89e

Browse files
tkelmanomus
authored andcommitted
remove base method extension in tests
unless the tests aren't covering something (or it's platform-dependent), this doesn't seem to be necessary for them to pass? ref fa45e36#commitcomment-23278547
1 parent 8afbabe commit 769a89e

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

test/runtests.jl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,6 @@ function parse_int{T, f}(::Type{FD{T, f}}, val::AbstractString; ceil::Bool=false
7272
reinterpret(FD{T, f}, parse(T, val[1:(f + 1)]) + T(ceil))
7373
end
7474

75-
# When working with typemax of Int128 or UInt128 we can run into issues.
76-
# https://github.com/JuliaLang/julia/pull/19779
77-
if VERSION < v"0.6.0-dev.1849"
78-
Base.:/(x::Int128, y::BigInt) = /(promote(x, y)...)
79-
Base.:/(x::UInt128, y::BigInt) = /(promote(x, y)...)
80-
end
81-
8275
# Basic tests for the methods created above
8376
@testset "alt" begin
8477
@test trunc_alt(FD2, 0.0) == FD2(0)

0 commit comments

Comments
 (0)