From 8abaa06c2387c141b09dcfeee4146af2a12b4f0d Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sat, 6 Jul 2019 01:02:16 -0400 Subject: [PATCH] Remove extraneous exception added to conftest.py Signed-off-by: Dan Ryan --- tests/integration/conftest.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 3579cd84..b05eacfa 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -38,10 +38,6 @@ def try_internet(url="http://httpbin.org/ip", timeout=1.5): resp.raise_for_status() -class ServerNotDead(Exception): - pass - - def check_internet(): has_internet = False for url in ("http://httpbin.org/ip", "http://clients3.google.com/generate_204"):