Skip to content

Commit 937f6a8

Browse files
committed
src/sage/functions/exp_integral.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 a563813 commit 937f6a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/functions/exp_integral.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ def __init__(self):
800800
Si(x)
801801
sage: sin_integral(x)._fricas_init_()
802802
'Si(x)'
803-
sage: sin_integral(x)._giac_() # needs sage.libs.giac
803+
sage: sin_integral(x)._giac_() # needs giac
804804
Si(sageVARx)
805805
"""
806806
BuiltinFunction.__init__(self, "sin_integral", nargs=1,
@@ -975,7 +975,7 @@ def __init__(self):
975975
Ci(x)
976976
sage: cos_integral(x)._fricas_init_()
977977
'Ci(x)'
978-
sage: cos_integral(x)._giac_() # needs sage.libs.giac
978+
sage: cos_integral(x)._giac_() # needs giac
979979
Ci(sageVARx)
980980
"""
981981
BuiltinFunction.__init__(self, "cos_integral", nargs=1,

0 commit comments

Comments
 (0)