Skip to content

Commit

Permalink
Fix #373
Browse files Browse the repository at this point in the history
Co-authored-by: LuEdRaMo <73906617+LuEdRaMo@users.noreply.github.com>
  • Loading branch information
lbenet and LuEdRaMo committed Oct 24, 2024
1 parent 4dd8971 commit 4ec14af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ TaylorSeriesSAExt = "StaticArrays"
[compat]
Aqua = "0.8"
IntervalArithmetic = "0.15 - 0.20"
JLD2 = "0.4"
JLD2 = "0.5"
LinearAlgebra = "<0.0.1, 1"
Markdown = "<0.0.1, 1"
RecursiveArrayTools = "2, 3"
Expand Down
2 changes: 1 addition & 1 deletion test/jld2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ using Test

@testset "Test TaylorSeries JLD2 extension" begin
dq = set_variables("q", order=4, numvars=6)
random_TaylorN = [cos(sum(dq .* rand(6))), sin(sum(dq .* rand(6))), tan(sum(dq .* rand(6)))]
random_TaylorN = [exp(sum(rand(6) .* dq)) for _ in 1:10_000]
jldsave("test.jld2"; random_TaylorN = random_TaylorN)
recovered_taylorN = JLD2.load("test.jld2", "random_TaylorN")
@test recovered_taylorN == random_TaylorN
Expand Down

0 comments on commit 4ec14af

Please sign in to comment.