Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
efaulhaber committed May 2, 2024
1 parent a6abf12 commit e3624e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/general/semidiscretization.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Use `@trixi_testset` to isolate the mock functions in a separate namespace
@trixi_testset "Semidiscretization" begin
# Mock systems
struct System1 <: TrixiParticles.System{3} end
struct System2 <: TrixiParticles.System{3} end
struct System1 <: TrixiParticles.System{3, Nothing} end
struct System2 <: TrixiParticles.System{3, Nothing} end

system1 = System1()
system2 = System2()
Expand Down Expand Up @@ -39,7 +39,7 @@
struct BoundaryModelMock end

# Mock fluid system
struct FluidSystemMock <: TrixiParticles.FluidSystem{2} end
struct FluidSystemMock <: TrixiParticles.FluidSystem{2, Nothing} end

kernel = Val(:smoothing_kernel)
Base.ndims(::Val{:smoothing_kernel}) = 2
Expand Down

0 comments on commit e3624e3

Please sign in to comment.