Skip to content

Commit

Permalink
Add disclaimer to scary-looking output during testing
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed Apr 8, 2024
1 parent e028c08 commit 148c231
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/test_unbound_args.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ include("preamble.jl")
using PkgUnboundArgs

@testset begin
println("### Expected output START ###")
results = @testtestset begin
Aqua.test_unbound_args(PkgUnboundArgs)
end
println("### Expected output END ###")
@test length(results) == 1
@test results[1] isa Test.Fail

Expand Down
2 changes: 2 additions & 0 deletions test/test_undefined_exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ using PkgWithUndefinedExports
@testset begin
@test Aqua.undefined_exports(PkgWithUndefinedExports) ==
[Symbol("PkgWithUndefinedExports.undefined_name")]
println("### Expected output START ###")
results = @testtestset begin
Aqua.test_undefined_exports(PkgWithUndefinedExports)
end
println("### Expected output END ###")
@test length(results) == 1
@test results[1] isa Test.Fail

Expand Down

0 comments on commit 148c231

Please sign in to comment.