Skip to content

Commit 40dfe45

Browse files
committed
fix test deprecation
1 parent 7068143 commit 40dfe45

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/dictionaries/test_pwconstants.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ using BasisFunctions, GridArrays
1212
@test isorthogonal(H,discretemeasure(MidpointEquispacedGrid(10,0,1)))
1313

1414
@test support(H) == Interval{:closed,:open}(0,1)
15-
@test support(H,1) == Interval{:closed,:open}(0,0.1)
15+
@test BasisFunctions.dict_support(H,1) == Interval{:closed,:open}(0,0.1)
1616

1717
@test 0 support(H)
1818
@test 1 support(H)
1919

20-
@test 0 support(H,1)
21-
@test .1 support(H,1)
20+
@test 0 BasisFunctions.support(H,1)
21+
@test .1 BasisFunctions.support(H,1)
2222

2323
@test gram(H,discretemeasure(g)) IdentityOperator(H)
2424
@test evaluation(H,g)IdentityOperator(H)

0 commit comments

Comments
 (0)