55import uuid
66import filecmp
77import unittest
8- import logging
98
109import bandwidth
1110from bandwidth .api import media_api
@@ -57,7 +56,6 @@ def uploadMedia(self) -> None:
5756 _return_http_data_only = False
5857 )
5958
60- logging .debug (api_response_with_http_info )
6159 self .assertEqual (api_response_with_http_info [1 ], 204 )
6260
6361 # reopen the media file
@@ -83,7 +81,6 @@ def listMedia(self) -> None:
8381 self .assertEqual (api_response_with_http_info [1 ], 200 )
8482
8583 api_response = self .api_instance .list_media (self .account_id )
86- logging .debug ("List Media" + str (api_response ))
8784
8885 self .assertIs (type (api_response [0 ]), Media )
8986 pass
@@ -94,7 +91,6 @@ def getMedia(self) -> None:
9491 api_response_with_http_info = self .api_instance .get_media (
9592 self .account_id , self .media_id , _return_http_data_only = False )
9693
97- logging .debug (api_response_with_http_info )
9894 self .assertEqual (api_response_with_http_info [1 ], 200 )
9995
10096 api_response = self .api_instance .get_media (
@@ -113,7 +109,6 @@ def deleteMedia(self) -> None:
113109 api_response_with_http_info = self .api_instance .delete_media (
114110 self .account_id , self .media_id , _return_http_data_only = False )
115111
116- logging .debug (api_response_with_http_info )
117112 self .assertEqual (api_response_with_http_info [1 ], 204 )
118113
119114 # returns void
0 commit comments