File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ function git_push(
3434 ssh = enable_ssh_verbose_b ? " ssh -vvvv" : " ssh"
3535 git_ssh_command = isnothing (pkey_filename) ? ssh : " $(ssh) -i $pkey_filename "
3636
37- env2 = copy (ENV );
37+ env2 = copy (ENV )
3838 env2[" GIT_SSH_COMMAND" ] = git_ssh_command
3939 cmd = ` git -c user.name="$name " -c user.email="$email " -c committer.name="$name " -c committer.email="$email " push $force_flag $remote $branch `
4040 @debug " Attempting to run Git push command" cmd env2[" GIT_SSH_COMMAND" ]
Original file line number Diff line number Diff line change @@ -125,19 +125,12 @@ end
125125 project_file = joinpath (pkgdir (CompatHelper), " Project.toml" )
126126
127127 # Just for this test, we hardcode this list
128- unregistered_stdlibs = [
129- " Base64" ,
130- " Dates" ,
131- " Pkg" ,
132- " UUIDs" ,
133- ]
128+ unregistered_stdlibs = [" Base64" , " Dates" , " Pkg" , " UUIDs" ]
134129
135130 @test ispath (project_file)
136131 @test isfile (project_file)
137132 for use_existing_registries in [true , false ]
138- options = CompatHelper. Options (;
139- use_existing_registries,
140- )
133+ options = CompatHelper. Options (; use_existing_registries)
141134 deps = CompatHelper. get_project_deps (project_file)
142135 for dep in deps
143136 @test dep. latest_version === nothing
You can’t perform that action at this time.
0 commit comments