Explorar el Código

Code coverage fix.

Taddeus Kroes hace 13 años
padre
commit
e09fb5e901
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/rules/fractions.py

+ 1 - 1
src/rules/fractions.py

@@ -362,7 +362,7 @@ def match_extract_fraction_terms(node):
         elif is_power_combination(n, d):
             handler = extract_fraction_terms
         else:
-            continue
+            continue  # pragma: nocover
 
         p.append(P(node, handler, (n_scope, d_scope, n, d)))