Skip to content

Commit 7142249

Browse files
authored
Fix an error
1 parent 2dae7e7 commit 7142249

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/registry_testing.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ function test(path=pwd(); registry_deps::Vector{<:AbstractString}=String[])
248248
Test.@test compat_for_this_v isa AbstractDict
249249
Test.@test deps_for_this_v isa AbstractDict
250250
for compat_pkgname in keys(compat_for_this_v)
251-
@test haskey(deps_for_this_v, compat_pkgname)
251+
Test.@test haskey(deps_for_this_v, compat_pkgname)
252252
end
253253
end
254254
end

0 commit comments

Comments
 (0)