From b26f61326bbed11c815ee77b479bc7ea873c0a31 Mon Sep 17 00:00:00 2001 From: Denes Karoly Date: Thu, 7 Sep 2023 17:42:00 +0300 Subject: [PATCH] Test fixed for DSv3 --- unit_tests/operations.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/unit_tests/operations.jl b/unit_tests/operations.jl index db621b0..fe49147 100644 --- a/unit_tests/operations.jl +++ b/unit_tests/operations.jl @@ -10,12 +10,12 @@ using Test end -ds = Systems.henon() +ds = PredefinedDynamicalSystems.henon() traj1 = trajectory(ds,10000;Ttr = 1000) traj2 = trajectory(ds,10000;Ttr = 11000) -@testset "stn addition test: commutativity" begin +# @testset "stn addition test: commutativity" begin symts_list12 = timeseries_to_common_grid([traj1,traj2],20) symts_list21 = timeseries_to_common_grid([traj2,traj1],20) @@ -23,4 +23,4 @@ traj2 = trajectory(ds,10000;Ttr = 11000) stn_added21,retcode = add_timeseries(symts_list21,20) @test are_equal(stn_added12,stn_added21) -end +# end