diff --git a/test/PrettyPrinting-test.jl b/test/PrettyPrinting-test.jl index 37760e3da1..80714ab67b 100644 --- a/test/PrettyPrinting-test.jl +++ b/test/PrettyPrinting-test.jl @@ -342,13 +342,13 @@ end end function Base.show(io::IO, R::NewRing) - if is_terse(io) + if PrettyPrinting.is_terse(io) # no nested printing print(io, "supercompact printing of newring ") else # nested printing allowed, preferably supercompact print(io, "one line printing of newring with ") - print(terse(io), "supercompact ", base_ring(R)) + print(PrettyPrinting.terse(io), "supercompact ", base_ring(R)) end end