summaryrefslogtreecommitdiff
path: root/rdiff-backup/testing
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-03-28 14:52:46 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2005-03-28 14:52:46 +0000
commit92275d6f2df762a868625f66cdfb1294d1e88b18 (patch)
tree8b4aaec8c8f6b60779632dd5af0adc2156904bb6 /rdiff-backup/testing
parent4d58fdf3888b4d824ab9a8506d805205d9df4cb7 (diff)
downloadrdiff-backup-92275d6f2df762a868625f66cdfb1294d1e88b18.tar.gz
Some final changes for 0.13.5
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@566 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/testing')
-rw-r--r--rdiff-backup/testing/rpathtest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rdiff-backup/testing/rpathtest.py b/rdiff-backup/testing/rpathtest.py
index c9fb783..6d7dee2 100644
--- a/rdiff-backup/testing/rpathtest.py
+++ b/rdiff-backup/testing/rpathtest.py
@@ -438,9 +438,9 @@ class FileAttributes(FileCopying):
def testCopyRaise(self):
"""Should raise exception for non-existent files"""
- self.assertRaises(RPathException, rpath.copy_attribs,
+ self.assertRaises(AssertionError, rpath.copy_attribs,
self.hl1, self.nothing)
- self.assertRaises(RPathException, rpath.copy_attribs,
+ self.assertRaises(AssertionError, rpath.copy_attribs,
self.nothing, self.nowrite)
class CheckPath(unittest.TestCase):