Improve exception message, thrown when trying to establish connection to island in BB tests

This commit is contained in:
VakarisZ 2021-05-21 08:41:28 +03:00
parent cc365a74c5
commit 49e63fcf1b
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ def island_client(island, quick_performance_tests):
island_client_object = MonkeyIslandClient(island)
client_established = island_client_object.get_api_status()
except Exception:
logging.exception("message")
logging.exception("Got an exception while trying to establish connection to the Island.")
finally:
if not client_established:
pytest.exit("BB tests couldn't establish communication to the island.")