소스 검색

Code coverage fix.

Taddeus Kroes 14 년 전
부모
커밋
e09fb5e901
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)))