Skip to content

Commit 191e25f

Browse files
committed
Fix default name
1 parent 77f79b5 commit 191e25f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/config.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PathfinderConfig(; options...) = PathfinderConfig(NamedTuple(options))
1414
# TODO: programatically generate this list from lists of combinations.
1515
function all_pathfinder_configurations(n::Int)
1616
return [
17-
"" => PathfinderConfig(),
17+
"default" => PathfinderConfig(),
1818
"initstaticscaled" => PathfinderConfig(;
1919
optimizer=Optim.LBFGS(;
2020
alphaguess=LineSearches.InitialStatic(; scaled=true),

test/config.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ end
1818
cfg = cfgs[name]
1919
indicators = split(name, '_')
2020
@test cfg isa PathfinderBenchmarks.PathfinderConfig
21-
if name == ""
21+
if name == "default"
2222
@test cfg === PathfinderBenchmarks.PathfinderConfig()
2323
continue
2424
end

0 commit comments

Comments
 (0)