Skip to content

Commit 348606c

Browse files
committed
TL: codecov is also asking for it ...
1 parent efc0fad commit 348606c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pySDC/core/Problem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def eval_f(self, u, t):
8888
"""
8989
raise NotImplementedError('ERROR: problem has to implement eval_f(self, u, t)')
9090

91-
def apply_mass_matrix(self, u):
91+
def apply_mass_matrix(self, u): # pragma: no cover
9292
"""Default mass matrix : identity"""
9393
return u
9494

pySDC/implementations/problem_classes/AdvectionEquation_ND_FD.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(
7676
):
7777
super().__init__(nvars, -c, 1, freq, stencil_type, order, lintol, liniter, solver_type, bc)
7878

79-
if solver_type == 'CG':
79+
if solver_type == 'CG': # pragma: no cover
8080
self.logger.warn('CG is not usually used for advection equation')
8181
self._makeAttributeAndRegister('c', localVars=locals(), readOnly=True)
8282
self._makeAttributeAndRegister('sigma', localVars=locals())

0 commit comments

Comments
 (0)