Skip to content

Commit

Permalink
Test fixed for DSv3
Browse files Browse the repository at this point in the history
  • Loading branch information
Denes Karoly committed Sep 7, 2023
1 parent 004cebf commit b26f613
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions unit_tests/operations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ 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)

stn_added12,retcode = add_timeseries(symts_list12,20)
stn_added21,retcode = add_timeseries(symts_list21,20)
@test are_equal(stn_added12,stn_added21)

end
# end

0 comments on commit b26f613

Please sign in to comment.