We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 604c841 commit 9306ceaCopy full SHA for 9306cea
test/base/aqua.jl
@@ -8,7 +8,8 @@ let ambs = Aqua.detect_ambiguities(CUDA; recursive=true)
8
pkg_match(pkgname, pkgdir::AbstractString) = occursin(pkgname, pkgdir)
9
10
# StaticArrays pirates a bunch of Random stuff...
11
- filter!(x -> !pkg_match("StaticArrays", pkgdir(first(x).module)), ambs)
+ filter!(x -> !pkg_match("StaticArrays", pkgdir(x[1].module)) &&
12
+ !pkg_match("StaticArrays", pkgdir(x[2].module)), ambs)
13
14
# if we'll fail this test, at least show which ambiguities were detected
15
if length(ambs) > MAX_AMBIGUITIES
0 commit comments