Skip to content

Commit 1795408

Browse files
authored
Fix hanging tests (#1175)
Yggdrasil pull request JuliaPackaging/Yggdrasil#4472 deleted the file `L/LibCURL/build_tarballs.jl`, which made the test checking that the file exists fail. Arguably, we should make the check more robust, but it'd be considerably more work for relatively little gain (vast majority of packages do follow the predictable naming scheme).
1 parent 45b9ee3 commit 1795408

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/wizard.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ end
129129
state.name = nothing
130130
# Use an existing name, choose a new one afterwards
131131
with_wizard_output(state, Wizard.get_name_and_version) do ins, outs
132-
call_response(ins, outs, "Enter a name for this project", "libcurl")
132+
call_response(ins, outs, "Enter a name for this project", "cuba")
133133
call_response(ins, outs, "Choose a new project name", "y")
134134
call_response(ins, outs, "Enter a name for this project", "libfoobarqux")
135135
end
@@ -138,10 +138,10 @@ end
138138
state.name = nothing
139139
# Use an existing name, confirm the choice
140140
with_wizard_output(state, Wizard.get_name_and_version) do ins, outs
141-
call_response(ins, outs, "Enter a name for this project", "libcurl")
141+
call_response(ins, outs, "Enter a name for this project", "cuba")
142142
call_response(ins, outs, "Choose a new project name", "N")
143143
end
144-
@test state.name == "libcurl"
144+
@test state.name == "cuba"
145145
@test state.version == v"1.2.3"
146146
end
147147

0 commit comments

Comments
 (0)