Skip to content

Commit 532fae9

Browse files
🤖 Automatically format the source code files (#473)
Co-authored-by: github-merge-queue[bot] <github-merge-queue[bot]@users.noreply.github.com>
1 parent 3190305 commit 532fae9

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

src/utilities/git.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"]

test/dependencies.jl

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)