Skip to content
Snippets Groups Projects
Commit dfd85838 authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Added coverage exceptions to rule message functions.

parent 7d602a84
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ def solve_indef(root, args):
return substitute(Fx, x, b) - substitute(Fx, x, a)
def solve_indef_msg(root, args):
def solve_indef_msg(root, args): # pragma: nocover
return _('Solve indefinite integral {0} using substitution ' \
'of %s with {0[2]} and {0[1]}.' % find_variable(root[0]))
......
......@@ -98,7 +98,7 @@ def subtract_term(root, args):
return eq(left - term, right - term)
def subtract_term_msg(root, args):
def subtract_term_msg(root, args): # pragma: nocover
term = args[0]
if term.negated == 1:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment