summaryrefslogtreecommitdiff
path: root/tests/test-bdiff.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-bdiff.py')
-rw-r--r--tests/test-bdiff.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/test-bdiff.py b/tests/test-bdiff.py
index c17dfb0..254246d 100644
--- a/tests/test-bdiff.py
+++ b/tests/test-bdiff.py
@@ -50,17 +50,3 @@ showdiff("x\n\nx\n\nx\n\nx\n\nz\n", "x\n\nx\n\ny\n\nx\n\nx\n\nz\n")
showdiff("x\n\nx\n\nx\n\nx\n\nz\n", "x\n\nx\n\ny\n\nx\n\ny\n\nx\n\nz\n")
print "done"
-
-def testfixws(a, b, allws):
- c = bdiff.fixws(a, allws)
- if c != b:
- print "*** fixws", repr(a), repr(b), allws
- print "got:"
- print repr(c)
-
-testfixws(" \ta\r b\t\n", "ab\n", 1)
-testfixws(" \ta\r b\t\n", " a b\n", 0)
-testfixws("", "", 1)
-testfixws("", "", 0)
-
-print "done"