Skip to content

Commit 205f7d6

Browse files
authored
Tests for transform with immutable coeffs/vals (#329)
* Tests for transform with immutable coeffs/vals * Update ApproxFunBase version
1 parent e24406d commit 205f7d6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ApproxFunOrthogonalPolynomialsPolynomialsExt = "Polynomials"
3030
ApproxFunOrthogonalPolynomialsStaticExt = "Static"
3131

3232
[compat]
33-
ApproxFunBase = "0.8.63, 0.9.21"
33+
ApproxFunBase = "0.8.64, 0.9.22"
3434
ApproxFunBaseTest = "0.1"
3535
Aqua = "0.8"
3636
BandedMatrices = "0.16, 0.17, 1"

test/ChebyshevTest.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,11 @@ include("testutils.jl")
274274
end
275275
end
276276

277+
@testset "transform with immutable coeffs" begin
278+
@test transform(Chebyshev(), itransform(Chebyshev(), 1:3)) 1:3
279+
@test itransform(Chebyshev(), transform(Chebyshev(), 1:3)) 1:3
280+
end
281+
277282
@testset "Normalized space" begin
278283
@test NormalizedChebyshev() isa NormalizedChebyshev
279284
for f in (x -> 3x^3 + 5x^2 + 2, x->x, identity)

0 commit comments

Comments
 (0)