Skip to content

Commit 26bee32

Browse files
authored
Fix show (#282)
1 parent 31ebbe2 commit 26bee32

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/showtest.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ using Static
1414
@test repr(Jacobi(1,2)) == "Jacobi(1,2)"
1515
@test repr(Jacobi(1.0,2.0)) == "Jacobi(1.0,2.0)"
1616

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)"
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))"
2323

2424
io = IOBuffer()
2525
@testset "Derivative" begin

0 commit comments

Comments
 (0)