Skip to content

Commit 7b606c7

Browse files
authored
tests for normalized space derivative Evaluation (#270)
1 parent 18f7083 commit 7b606c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/UltrasphericalTest.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,9 @@ include("testutils.jl")
174174
E = Evaluation(S, 0.5)
175175
@test reshape(E[1:1, 1:10], 10) [E[1,i] for i in 1:10]
176176
f = Fun(x->x^3, S)
177-
@test Number(E * f) f(0.5)
177+
@test Number(E * f) (0.5)^3
178+
E = Evaluation(S, 0.5, 2)
179+
@test Number(E * f) 6 * (0.5)
178180
end
179181
end
180182

0 commit comments

Comments
 (0)