Skip to content

Commit fb58af4

Browse files
committed
fix julia nightly tests
workaround Dict printing formatting changes
1 parent 962df84 commit fb58af4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_parameters.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
dc = DictChain(d1, d2, d3)
117117
iob = IOBuffer()
118118
show(iob, dc)
119-
@test String(take!(iob)) == "BlackBoxOptim.DictChain{Symbol,$Int}[Dict(:a=>1),Dict(:a=>2,:b=>4),Dict(:a=>3,:b=>5)]"
119+
@test replace(String(take!(iob)), ' '=>"") == "BlackBoxOptim.DictChain{Symbol,$Int}[Dict(:a=>1),Dict(:a=>2,:b=>4),Dict(:a=>3,:b=>5)]"
120120
end
121121

122122
@testset "flatten" begin

0 commit comments

Comments
 (0)