Skip to content

Commit 97b3017

Browse files
committed
Word wrap to 92-characters
1 parent b3a06b8 commit 97b3017

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

test/runtests.jl

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -372,8 +372,7 @@ end
372372
@test trunc(FD3, x) == FD3(x - 0.001)
373373

374374
for f in 0:12
375-
@test trunc(FD{Int64, f}, x) ==
376-
parse_int(FD{Int64, f}, INTS[x])
375+
@test trunc(FD{Int64, f}, x) == parse_int(FD{Int64, f}, INTS[x])
377376
end
378377
end
379378

@@ -410,8 +409,7 @@ epsi{T}(::Type{T}) = eps(T)
410409
@test floor(FD3, x) == FD3(x - 0.001)
411410

412411
for f in 0:12
413-
@test floor(FD{Int64, f}, x) ==
414-
parse_int(FD{Int64, f}, INTS[x])
412+
@test floor(FD{Int64, f}, x) == parse_int(FD{Int64, f}, INTS[x])
415413
end
416414

417415
@test ceil(FD3, x) == ceil(FD4, x) == FD4(x)
@@ -423,8 +421,7 @@ epsi{T}(::Type{T}) = eps(T)
423421
@test ceil(FD3, x) == FD3(x + 0.001)
424422

425423
for f in 0:12
426-
@test ceil(FD{Int64, f}, x) ==
427-
parse_int(FD{Int64, f}, INTS[x], ceil=true)
424+
@test ceil(FD{Int64, f}, x) == parse_int(FD{Int64, f}, INTS[x], ceil=true)
428425
end
429426

430427
@test floor(FD3, x) == floor(FD4, x) == FD4(x)

0 commit comments

Comments
 (0)