File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -710,7 +710,7 @@ def test_unified_diff(self):
710
710
results_main = next (wtp .patch .parse_patch (text ))
711
711
self .assertEqual (results_main , expected_main )
712
712
713
- def test_diff_unified_blah (self ):
713
+ def test_diff_unified_with_does_not_include_extra_lines (self ):
714
714
with open ('tests/casefiles/diff-unified-blah.diff' ) as f :
715
715
text = f .read ()
716
716
@@ -747,7 +747,7 @@ def test_diff_unified_blah(self):
747
747
results = list (wtp .patch .parse_patch (text ))
748
748
self .assertEqual (results , expected )
749
749
750
- def test_diff_context_blah (self ):
750
+ def test_diff_context_with_does_not_include_extra_lines (self ):
751
751
with open ('tests/casefiles/diff-context-blah.diff' ) as f :
752
752
text = f .read ()
753
753
@@ -784,7 +784,7 @@ def test_diff_context_blah(self):
784
784
results = list (wtp .patch .parse_patch (text ))
785
785
self .assertEqual (results , expected )
786
786
787
- def test_diff_default_blah (self ):
787
+ def test_diff_default_with_does_not_include_extra_lines (self ):
788
788
with open ('tests/casefiles/diff-default-blah.diff' ) as f :
789
789
text = f .read ()
790
790
You can’t perform that action at this time.
0 commit comments