[julia-users] Re: Coveralls/Codecov report certain lines are not covered, but test for the lines do appear to exist in code

2015-11-21 Thread Dan
Regarding the last printing point only print(string(eltype(8)) * ", " * string(eltype(8))) is probably what you meant. AbstractString(Int64), tries to create an AbstractString from an Int64, while string(Int64) asks for a string representation. The latter semantics is more accurate, and works.

[julia-users] Re: Coveralls/Codecov report certain lines are not covered, but test for the lines do appear to exist in code

2015-11-23 Thread Zygmunt Szpak
Thank you Dan. On Sunday, November 22, 2015 at 6:25:54 PM UTC+10:30, Dan wrote: > > Regarding the last printing point only > print(string(eltype(8)) * ", " * string(eltype(8))) > > is probably what you meant. AbstractString(Int64), tries to create an > AbstractString from an Int64, while string(I