From fcd704ec10c84b48edd226590d20047ace33ccc6 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sat, 28 Oct 2023 04:16:30 -0400 Subject: [PATCH] Fix a syntax error --- src/registry_testing.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registry_testing.jl b/src/registry_testing.jl index e27409f6..8f4e457d 100644 --- a/src/registry_testing.jl +++ b/src/registry_testing.jl @@ -258,7 +258,7 @@ function test(path=pwd(); registry_deps::Vector{<:AbstractString}=String[]) # is no need to have `julia` listed in Deps.toml. # However, every other compat entry needs to be listed # in Deps.toml. - if compat_pkgname != julia" + if compat_pkgname != "julia" Test.@test haskey(deps_for_this_v, compat_pkgname) end end