diff --git a/docs/make.jl b/docs/make.jl index 3483eb3..ed60c60 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -7,17 +7,12 @@ makedocs( format = Documenter.HTML( prettyurls = false, size_threshold_ignore = ["index.md"], - assets=[ + assets = [ asset("https://control-toolbox.org/assets/css/documentation.css"), asset("https://control-toolbox.org/assets/js/documentation.js"), ], ), - pages = [ - "Introduction" => "index.md", - ] + pages = ["Introduction" => "index.md"], ) -deploydocs( - repo = "github.com/control-toolbox/CTApp.jl.git", - devbranch = "main" -) +deploydocs(repo = "github.com/control-toolbox/CTApp.jl.git", devbranch = "main") diff --git a/test/runtests.jl b/test/runtests.jl index c274d05..28eab1d 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,9 +3,7 @@ using CTApp # @testset verbose = true showtiming = true "CTApp tests" begin - for name ∈ ( - :default, - ) + for name ∈ (:default,) @testset "$(name)" begin test_name = Symbol(:test_, name) include("$(test_name).jl") diff --git a/test/test_default.jl b/test/test_default.jl index 8e72753..e8021ee 100644 --- a/test/test_default.jl +++ b/test/test_default.jl @@ -1,4 +1,4 @@ # test_default function test_default() - @test CTApp.greet() isa Nothing -end \ No newline at end of file + @test CTApp.greet() isa Nothing +end