summaryrefslogtreecommitdiff
path: root/git/test/test_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/test/test_config.py')
-rw-r--r--git/test/test_config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_config.py b/git/test/test_config.py
index ce7a2cde..8418299f 100644
--- a/git/test/test_config.py
+++ b/git/test/test_config.py
@@ -98,10 +98,10 @@ class TestBase(TestCase):
assert r_config.get_value('diff', 'tool') == "meld"
try:
assert r_config.get_value('sec', 'var1') == "value1_main"
- except AssertionError:
+ except AssertionError as e:
raise SkipTest(
'Known failure -- included values are not in effect right away'
- )
+ ) from e
@with_rw_directory
def test_lock_reentry(self, rw_dir):