Skip to content

Commit 0302a56

Browse files
committed
Fix format
1 parent 9930a31 commit 0302a56

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Bridges/Bridges.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,8 @@ function _runtests(
314314
print(inner)
315315
end
316316
Test.@testset "Test outer bridged model appears like the input" begin # COV_EXCL_LINE
317-
test = MOI.Utilities.UniversalFallback(MOI.Utilities.Model{model_eltype}())
317+
test =
318+
MOI.Utilities.UniversalFallback(MOI.Utilities.Model{model_eltype}())
318319
input_fn(test)
319320
_test_structural_identical(
320321
test,
@@ -323,7 +324,8 @@ function _runtests(
323324
)
324325
end
325326
Test.@testset "Test inner bridged model appears like the target" begin # COV_EXCL_LINE
326-
target = MOI.Utilities.UniversalFallback(MOI.Utilities.Model{model_eltype}())
327+
target =
328+
MOI.Utilities.UniversalFallback(MOI.Utilities.Model{model_eltype}())
327329
output_fn(target)
328330
_test_structural_identical(target, inner)
329331
end

0 commit comments

Comments
 (0)