Blob Blame History Raw
diff -up ./test/test_svn.py.svn1.9 ./test/test_svn.py
--- ./test/test_svn.py.svn1.9	2015-09-13 18:33:16.518967225 -0400
+++ ./test/test_svn.py	2015-09-13 18:41:45.738425164 -0400
@@ -371,6 +371,8 @@ class SvnDiffStatClientTest(SvnClientTes
                     # new svn versions use different labels for added
                     # files (working copy) vs (revision x)
                     fixedline = re.sub('\(revision [0-9]+\)', '(working copy)', line)
+                    # svn 1.9 added (nonexistent)
+                    fixedline = re.sub('\(nonexistent\)', '(working copy)', fixedline)
                     newblock.append(fixedline)
             return "\n".join(newblock)