summaryrefslogtreecommitdiff
path: root/src/leap/base/tests/test_checks.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/base/tests/test_checks.py')
-rw-r--r--src/leap/base/tests/test_checks.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/leap/base/tests/test_checks.py b/src/leap/base/tests/test_checks.py
index 272e7053..7a694f89 100644
--- a/src/leap/base/tests/test_checks.py
+++ b/src/leap/base/tests/test_checks.py
@@ -119,16 +119,16 @@ class LeapNetworkCheckTest(BaseLeapTest):
checker.check_internet_connection()
with patch.object(requests, "get") as mocked_get:
- mocked_get.side_effect = \
- requests.ConnectionError("[Errno 113] No route to host")
+ mocked_get.side_effect = requests.ConnectionError(
+ "[Errno 113] No route to host")
with self.assertRaises(exceptions.NoInternetConnection):
with patch.object(checker, "ping_gateway") as mock_ping:
mock_ping.return_value = True
checker.check_internet_connection()
with patch.object(requests, "get") as mocked_get:
- mocked_get.side_effect = \
- requests.ConnectionError("[Errno 113] No route to host")
+ mocked_get.side_effect = requests.ConnectionError(
+ "[Errno 113] No route to host")
with self.assertRaises(exceptions.NoInternetConnection):
with patch.object(checker, "ping_gateway") as mock_ping:
mock_ping.side_effect = exceptions.NoConnectionToGateway