@@ -48,7 +48,7 @@ ispackage(m::Module) =
4848 if m in (Base, Core)
4949 true
5050 else
51- parentmodule (m) == m
51+ parentmodule (m)== m
5252 end
5353
5454strnameof (x) = string (x)
@@ -71,7 +71,8 @@ function getobj((pkgid, name)::ExcludeSpec)
7171end
7272
7373function normalize_and_check_exclude (exclude:: AbstractVector )
74- exspecs = mapfoldl (normalize_exclude, push!, exclude, init = ExcludeSpec[])
74+ exspecs = mapfoldl (normalize_exclude, push!, exclude, init =
75+ ExcludeSpec[])
7576 for (spec, obj) in zip (exspecs, exclude)
7677 if getobj (spec) != = obj
7778 error (" Name `$(spec[2 ]) ` is resolved to a different object." )
@@ -81,17 +82,16 @@ function normalize_and_check_exclude(exclude::AbstractVector)
8182end
8283
8384function reprexclude (exspecs:: Vector{ExcludeSpec} )
84- itemreprs = map (exspecs) do (pkgid, name)
85- string (" (" , reprpkgid (pkgid), " => " , repr (name), " )" )
86- end
87- return string (" Aqua.ExcludeSpec[" , join (itemreprs, " , " ), " ]" )
85+ itemreprs = map (exspecs) do (pkgid, name)
86+ string (" (" , reprpkgid (pkgid), " => " , repr (name), " )" )
87+ end
88+ return string (" Aqua.ExcludeSpec[" , join (itemreprs, " , " ), " ]" )
8889end
8990
9091function _test_ambiguities (packages:: Vector{PkgId} ; broken:: Bool = false , kwargs... )
9192 num_ambiguities, strout, strerr = _find_ambiguities (packages; kwargs... )
9293
93- print (stderr , strerr)
94- print (stdout , strout)
94+ print (stderr ,strerr); print (stdout , strout)
9595
9696 if broken
9797 @test_broken num_ambiguities == 0
0 commit comments