Skip to content

Commit ed9b6cb

Browse files
committed
Fix an error
1 parent 8a4aafd commit ed9b6cb

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
@@ -253,7 +253,7 @@ function test(path=pwd(); registry_deps::Vector{<:AbstractString}=String[])
253253
Test.@test compat_for_this_v isa AbstractDict
254254
Test.@test deps_for_this_v isa AbstractDict
255255
for compat_pkgname in keys(compat_for_this_v)
256-
@test haskey(deps_for_this_v, compat_pkgname)
256+
Test.@test haskey(deps_for_this_v, compat_pkgname)
257257
end
258258
end
259259
end

0 commit comments

Comments
 (0)