summaryrefslogtreecommitdiff
path: root/gitlab/tests/test_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/tests/test_config.py')
-rw-r--r--gitlab/tests/test_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/tests/test_config.py b/gitlab/tests/test_config.py
index 73a9dde..d1e668e 100644
--- a/gitlab/tests/test_config.py
+++ b/gitlab/tests/test_config.py
@@ -79,7 +79,7 @@ class TestConfigParser(unittest.TestCase):
@mock.patch('os.path.exists')
def test_missing_config(self, path_exists):
path_exists.return_value = False
- with self.assertRaises(config.GitlabConfigMissingError) as cme:
+ with self.assertRaises(config.GitlabConfigMissingError):
config.GitlabConfigParser('test')
@mock.patch('os.path.exists')