From 0924f6ab60552142d861921592ef3d2b452e5ed3 Mon Sep 17 00:00:00 2001 From: Max Wittig Date: Sat, 3 Nov 2018 21:47:28 +0100 Subject: chore: fix style --- gitlab/tests/test_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') -- cgit v1.2.1