Skip to content

Commit

Permalink
test(LinearInterpolation): change tests back to original
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutosh-b-b committed Oct 1, 2024
1 parent 38c042f commit 753f498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/interpolation_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ end
A = LinearInterpolation(u, t; extrapolate = true)

for (_t, _u) in zip(t, eachcol(u))
@test A(_t) == reshape(_u, :, 1)
@test A(_t) == _u
end
@test A(0) == [0.0; 0.0;;]
@test A(5.5) == [11.0; 16.5;;]
Expand Down

0 comments on commit 753f498

Please sign in to comment.