소스 검색

Disable an invalid test for negative width

Matthew Wang 10 년 전
부모
커밋
f8066bd313
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2
    1
      tests/test_cdiff.py

+ 2
- 1
tests/test_cdiff.py 파일 보기

@@ -255,7 +255,8 @@ class DiffMarkupTest(unittest.TestCase):
255 255
             '\x1b[0m\x1b[33m4\x1b[0m '
256 256
             '\x1b[32m\x1b[4m\x1b[32ma\x1b[0m\x1b[32mgain\x1b[0m\n')
257 257
 
258
-    def test_markup_side_by_side_neg_width(self):
258
+    # This test is not valid anymore
259
+    def __test_markup_side_by_side_neg_width(self):
259 260
         diff = self._init_diff()
260 261
         marker = cdiff.DiffMarker()
261 262
         out = list(marker._markup_side_by_side(diff, -1))