We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31ebbe2 commit 26bee32Copy full SHA for 26bee32
test/showtest.jl
@@ -14,12 +14,12 @@ using Static
14
@test repr(Jacobi(1,2)) == "Jacobi(1,2)"
15
@test repr(Jacobi(1.0,2.0)) == "Jacobi(1.0,2.0)"
16
17
- @test repr(Chebyshev(0..1)) == "Chebyshev(0..1)"
18
- @test repr(NormalizedChebyshev(0..1)) == "NormalizedChebyshev(0..1)"
19
- @test repr(Ultraspherical(1,0..1)) == "Ultraspherical(1,0..1)"
20
- @test repr(Legendre(0..1)) == "Legendre(0..1)"
21
- @test repr(Jacobi(1,2,0..1)) == "Jacobi(1,2,0..1)"
22
- @test repr(Jacobi(1.0,2.0,0..1)) == "Jacobi(1.0,2.0,0..1)"
+ @test repr(Chebyshev(0..1)) == "Chebyshev($(0..1))"
+ @test repr(NormalizedChebyshev(0..1)) == "NormalizedChebyshev($(0..1))"
+ @test repr(Ultraspherical(1,0..1)) == "Ultraspherical(1,$(0..1))"
+ @test repr(Legendre(0..1)) == "Legendre($(0..1))"
+ @test repr(Jacobi(1,2,0..1)) == "Jacobi(1,2,$(0..1))"
+ @test repr(Jacobi(1.0,2.0,0..1)) == "Jacobi(1.0,2.0,$(0..1))"
23
24
io = IOBuffer()
25
@testset "Derivative" begin
0 commit comments