Fix: forgot to skip a doctest

This commit is contained in:
Bertrand Benjamin 2019-05-16 19:02:31 +02:00
parent fbe72ae764
commit 8ab306683b
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class Expression(object):
:example:
>>> Expression.random("{a}/{a*k}") # doctest: +SKIP
<Exp: -3 / -15>
>>> Expression.random("{a}/{a*k} - 3*{b}", variables_scope={'a':{'min_max':(10, 30)}})
>>> Expression.random("{a}/{a*k} - 3*{b}", variables_scope={'a':{'min_max':(10, 30)}}) # doctest +SKIP
<Exp: 18 / 108 - 3 * 9>
"""