Skip to content

Commit

Permalink
fix testset formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnoStrouwen committed Jan 7, 2024
1 parent 5850977 commit d680331
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ using SymbolicIndexingInterface
using SafeTestsets
using Test

@safetestset "Quality Assurance" @time include("qa.jl")
@safetestset "Interface test" @time include("example_test.jl")
@safetestset "Trait test" @time include("trait_test.jl")
@safetestset "SymbolCache test" @time include("symbol_cache_test.jl")
@safetestset "Fallback test" @time include("fallback_test.jl")
@safetestset "Parameter indexing test" @time include("parameter_indexing_test.jl")
@safetestset "State indexing test" @time include("state_indexing_test.jl")
@time @safetestset "Quality Assurance" include("qa.jl")
@time @safetestset "Interface test" include("example_test.jl")
@time @safetestset "Trait test" include("trait_test.jl")
@time @safetestset "SymbolCache test" include("symbol_cache_test.jl")
@time @safetestset "Fallback test" include("fallback_test.jl")
@time @safetestset "Parameter indexing test" include("parameter_indexing_test.jl")
@time @safetestset "State indexing test" include("state_indexing_test.jl")

0 comments on commit d680331

Please sign in to comment.