From e3687deddf72ef38bace0e56c1fbce3dcbd5ae80 Mon Sep 17 00:00:00 2001 From: Erik Faulhaber <44124897+efaulhaber@users.noreply.github.com> Date: Tue, 11 Jun 2024 11:16:24 +0200 Subject: [PATCH] Fix tests --- test/count_allocations.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/count_allocations.jl b/test/count_allocations.jl index 3b5110ba1..1c597f9a0 100644 --- a/test/count_allocations.jl +++ b/test/count_allocations.jl @@ -45,7 +45,7 @@ function count_rhs_allocations(sol, semi) try # Disable timers, which cause extra allocations - TrixiParticles.TimerOutputs.disable_debug_timings(TrixiParticles) + TrixiParticles.disable_debug_timings() # Disable multithreading, which causes extra allocations return disable_polyester_threads() do @@ -57,7 +57,7 @@ function count_rhs_allocations(sol, semi) end finally # Enable timers again - @invokelatest TrixiParticles.TimerOutputs.enable_debug_timings(TrixiParticles) + @invokelatest TrixiParticles.enable_debug_timings() end end