From 26663e87fd17cc9e7b8fa53a7f33650de1053b3a Mon Sep 17 00:00:00 2001 From: Matthias Bernt Date: Fri, 25 Oct 2024 14:24:22 +0200 Subject: [PATCH] debug test --- bioblend/_tests/TestGalaxyNotifications.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bioblend/_tests/TestGalaxyNotifications.py b/bioblend/_tests/TestGalaxyNotifications.py index 8e736c81f..4adb6bd04 100755 --- a/bioblend/_tests/TestGalaxyNotifications.py +++ b/bioblend/_tests/TestGalaxyNotifications.py @@ -357,9 +357,9 @@ def test_delete_notifications(self): user_gi = GalaxyInstance(url=self.gi.base_url, email=user["email"], password="password") # send the test notifications and save their ids - notification_1_id = self._send_test_notification_to([user["id"]], message="test_notification_status 1")[ - "notification" - ]["id"] + notification_1 = self._send_test_notification_to([user["id"]], message="test_notification_status 1") + print(notification_1) + notification_1_id = notification_1["notification"]["id"] notification_2_id = self._send_test_notification_to([user["id"]], message="test_notification_status 2")[ "notification" ]["id"]