@@ -218,7 +218,12 @@ function test_no_names()
218218 ModelAnalyzer. summarize (buf, ret[1 ], verbose = true , model = model)
219219 str = String (take! (buf))
220220 @test startswith (str, " Variable: " )
221- ModelAnalyzer. summarize (buf, ret[1 ], verbose = true , model = JuMP. backend (model))
221+ ModelAnalyzer. summarize (
222+ buf,
223+ ret[1 ],
224+ verbose = true ,
225+ model = JuMP. backend (model),
226+ )
222227 str = String (take! (buf))
223228 @test startswith (str, " Variable: " )
224229 ModelAnalyzer. summarize (buf, ret[1 ], verbose = false , model = model)
@@ -240,7 +245,12 @@ function test_no_names()
240245 ModelAnalyzer. summarize (buf, ret[1 ], verbose = true , model = model)
241246 str = String (take! (buf))
242247 @test startswith (str, " Constraint: " )
243- ModelAnalyzer. summarize (buf, ret[1 ], verbose = true , model = JuMP. backend (model))
248+ ModelAnalyzer. summarize (
249+ buf,
250+ ret[1 ],
251+ verbose = true ,
252+ model = JuMP. backend (model),
253+ )
244254 str = String (take! (buf))
245255 @test startswith (str, " Constraint: " )
246256 ModelAnalyzer. summarize (buf, ret[1 ], verbose = false , model = model)
@@ -274,7 +284,12 @@ function test_variable_not_in_constraints()
274284 ModelAnalyzer. summarize (buf, ret[1 ], verbose = true , model = model)
275285 str = String (take! (buf))
276286 @test startswith (str, " Variable: " )
277- ModelAnalyzer. summarize (buf, ret[1 ], verbose = true , model = JuMP. backend (model))
287+ ModelAnalyzer. summarize (
288+ buf,
289+ ret[1 ],
290+ verbose = true ,
291+ model = JuMP. backend (model),
292+ )
278293 str = String (take! (buf))
279294 @test startswith (str, " Variable: " )
280295 ModelAnalyzer. summarize (buf, ret[1 ], verbose = false , model = model)
@@ -319,7 +334,12 @@ function test_empty_constraint_model()
319334 ModelAnalyzer. summarize (buf, ret[1 ], verbose = true , model = model)
320335 str = String (take! (buf))
321336 @test startswith (str, " Constraint: " )
322- ModelAnalyzer. summarize (buf, ret[1 ], verbose = true , model = JuMP. backend (model))
337+ ModelAnalyzer. summarize (
338+ buf,
339+ ret[1 ],
340+ verbose = true ,
341+ model = JuMP. backend (model),
342+ )
323343 str = String (take! (buf))
324344 @test startswith (str, " Constraint: " )
325345 ModelAnalyzer. summarize (buf, ret[1 ], verbose = false , model = model)
0 commit comments