summaryrefslogtreecommitdiffhomepage
path: root/tests/09_test_write_tree.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/09_test_write_tree.py')
-rw-r--r--tests/09_test_write_tree.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/09_test_write_tree.py b/tests/09_test_write_tree.py
index 0ec0ccb2..d95440b1 100644
--- a/tests/09_test_write_tree.py
+++ b/tests/09_test_write_tree.py
@@ -29,9 +29,8 @@ class TestWriteTree(testutils.DebianGitTestRepo):
"""Write out index file to non-existent dir"""
paths = self._write_testtree()
self.repo.add_files(paths)
- self.assertRaises(gbp.git.GitRepositoryError,
- self.repo.write_tree,
- '/does/not/exist')
+ with self.assertRaises(gbp.git.GitRepositoryError):
+ self.repo.write_tree('/does/not/exist')
def test_write_tree(self):
"""Write out index file to alternate index file"""
@@ -63,10 +62,7 @@ class TestWriteTree(testutils.DebianGitTestRepo):
# commit the same tree again using the previous commit as parent
self.repo.commit_tree(sha1, "second commit", parents=[commit])
# commit the same tree again using a non-existent parent
- self.assertRaises(gbp.errors.GbpError,
- self.repo.commit_tree,
- sha1,
- "failed commit",
- ['doesnotexist'])
+ with self.assertRaises(gbp.errors.GbpError):
+ self.repo.commit_tree(sha1, "failed commit", ['doesnotexist'])
# vim:et:ts=4:sw=4:et:sts=4:ai:set list listchars=tab\:»·,trail\:·: