From 33117aefb827c32ce602e527d343c1b9dd2eb181 Mon Sep 17 00:00:00 2001 From: Daniel Krenn Date: Thu, 18 Oct 2018 15:21:35 +0200 Subject: [PATCH] Trac #22154: update one doctest due to recent changes in log --- src/sage/rings/asymptotic/asymptotic_ring.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sage/rings/asymptotic/asymptotic_ring.py b/src/sage/rings/asymptotic/asymptotic_ring.py index c90b92e9ce8..c89b458d192 100644 --- a/src/sage/rings/asymptotic/asymptotic_ring.py +++ b/src/sage/rings/asymptotic/asymptotic_ring.py @@ -2009,7 +2009,7 @@ def log(self, base=None, precision=None, log_function=None): sage: R. = AsymptoticRing(growth_group='x^ZZ * log(x)^ZZ', coefficient_ring=ZZ, default_prec=3) sage: (49*x^3-1).log() - 3*log(x) + log(49) - 1/49*x^(-3) - 1/4802*x^(-6) ... + O(x^(-12)) + 3*log(x) + 2*log(7) - 1/49*x^(-3) - 1/4802*x^(-6) ... + O(x^(-12)) sage: _.parent() Asymptotic Ring over Symbolic Ring