Skip to content

Commit 9c06fc6

Browse files
committed
fix flake
Signed-off-by: Chris Snow <[email protected]>
1 parent 961c9c0 commit 9c06fc6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/cli/cli_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626

2727
import requests
2828
import six
29-
from mock import patch
3029

3130
if six.PY2:
3231
from io import BytesIO as StringIO # noqa: F811
@@ -95,7 +94,7 @@ def test_config_file_missing(self):
9594

9695
with self.assertRaises(SystemExit) as cm:
9796
self.cli.HPECP_CONFIG_FILE = "this_file_should_not_exist"
98-
hpecp = self.cli.get_client()
97+
self.cli.get_client()
9998

10099
self.assertEqual(cm.exception.code, 1)
101100

0 commit comments

Comments
 (0)