Skip to content

Commit f214429

Browse files
committed
Fix test_jump
1 parent ab5da74 commit f214429

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sumpy/test/test_kernels.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -902,13 +902,13 @@ def test_jump(
902902
dlp_knl = DirectionalSourceDerivative(kernel)
903903

904904
from sumpy.qbx import LayerPotential
905-
lpot = LayerPotential(actx.context,
905+
lpot = LayerPotential(
906906
expansion=LineTaylorLocalExpansion(kernel, order=order),
907907
source_kernels=(dlp_knl,),
908908
target_kernels=(kernel,),
909909
value_dtypes=np.complex128,)
910910

911-
_evt, (y,) = lpot(actx.queue,
911+
y, = lpot(actx,
912912
actx.from_numpy(targets),
913913
actx.from_numpy(geo.nodes),
914914
actx.from_numpy(centers),

0 commit comments

Comments
 (0)