Skip to content

Commit 5d0065d

Browse files
committed
src/sage/functions/generalized.py: needs sage.libs.giac -> needs giac
Some tests in this file use the giac pexpect interface but are tagged with "needs sage.libs.giac". Now that we have a feature for the giac executable, "needs giac" is more appropriate.
1 parent 7f313f3 commit 5d0065d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/functions/generalized.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def __init__(self):
253253
H\left(x\right)
254254
sage: heaviside(x)._sympy_() # needs sympy
255255
Heaviside(x)
256-
sage: heaviside(x)._giac_() # needs sage.libs.giac
256+
sage: heaviside(x)._giac_() # needs giac
257257
Heaviside(sageVARx)
258258
sage: h(x) = heaviside(x)
259259
sage: h(pi).numerical_approx()
@@ -413,7 +413,7 @@ class FunctionSignum(BuiltinFunction):
413413
sign(x)
414414
sage: sgn(x)._fricas_init_() # needs sage.symbolic
415415
'(x+->abs(x)/x)(x)'
416-
sage: sgn(x)._giac_() # needs sage.libs.giac sage.symbolic
416+
sage: sgn(x)._giac_() # needs giac sage.symbolic
417417
sign(sageVARx)
418418
419419
Test for :issue:`31085`::

0 commit comments

Comments
 (0)