From 49e63fcf1b77f7efd56fce4c0710018569f71f97 Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Fri, 21 May 2021 08:41:28 +0300 Subject: [PATCH] Improve exception message, thrown when trying to establish connection to island in BB tests --- envs/monkey_zoo/blackbox/test_blackbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/envs/monkey_zoo/blackbox/test_blackbox.py b/envs/monkey_zoo/blackbox/test_blackbox.py index 2fe39a399..5ee5f63c7 100644 --- a/envs/monkey_zoo/blackbox/test_blackbox.py +++ b/envs/monkey_zoo/blackbox/test_blackbox.py @@ -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.")