Skip to content

Commit 37ce2dd

Browse files
committed
Destroy some formatting (again)
1 parent a2aee99 commit 37ce2dd

File tree

3 files changed

+19
-17
lines changed

3 files changed

+19
-17
lines changed

docs/make.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ makedocs(;
2121
repolink = "https://github.com/JuliaTesting/Aqua.jl",
2222
assets = ["assets/favicon.ico"],
2323
),
24-
authors = "Takafumi Arakaki",
24+
authors = "Takafumi Arakaki",
2525
)
2626

27-
deploydocs(; repo = "github.com/JuliaTesting/Aqua.jl", push_preview = true)
27+
deploydocs( ; repo = "github.com/JuliaTesting/Aqua.jl", push_preview = true)
28+

src/unbound_args.jl

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,18 @@ of the method.
1313
function test_unbound_args(m::Module; broken::Bool = false)
1414
unbounds = detect_unbound_args_recursively(m)
1515
if !isempty(unbounds)
16-
printstyled(
17-
stderr,
18-
"Unbound type parameters detected:\n";
19-
bold = true,
20-
color = Base.error_color(),
16+
printstyled(
17+
stderr,
18+
"Unbound type parameters detected:\n";
19+
bold = true,
20+
color = Base.error_color(),
2121
)
22-
show(stderr, MIME"text/plain"(), unbounds)
22+
show(stderr,MIME"text/plain"( ) , unbounds)
2323
println(stderr)
2424
end
2525
if broken
26-
@test_broken isempty(unbounds)
26+
@test_broken isempty(
27+
unbounds)
2728
else
2829
@test isempty(unbounds)
2930
end

test/test_unbound_args.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ include("preamble.jl")
55
using PkgUnboundArgs
66

77
@testset begin
8-
results = @testtestset begin
9-
Aqua.test_unbound_args(PkgUnboundArgs)
10-
end
11-
@test length(results) == 1
12-
@test results[1] isa Test.Fail
8+
results = @testtestset begin
9+
Aqua.test_unbound_args(PkgUnboundArgs)
10+
end
11+
@test length(results) == 1
12+
@test results[1] isa Test.Fail
1313

14-
# It works with other tests:
15-
Aqua.test_ambiguities(PkgUnboundArgs)
16-
Aqua.test_undefined_exports(PkgUnboundArgs)
14+
# It works with other tests:
15+
Aqua.test_ambiguities( PkgUnboundArgs )
16+
Aqua.test_undefined_exports(PkgUnboundArgs)
1717
end
1818

1919
end # module

0 commit comments

Comments
 (0)