Skip to content

Commit e460ab8

Browse files
committed
Comment out non-functional updateEndpointBxml test in TestEndpointsApi
1 parent 7336366 commit e460ab8

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

test/smoke/test_endpoints_api.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,18 @@ def getEndpoint(self):
125125
'devices', instance_of(list)
126126
))
127127

128+
# Note: This endpoint is currently not working in the API, so this test is commented out for now. Once the API issue is resolved, this test should be uncommented and verified.
129+
# def updateEndpointBxml(self):
130+
# bxml = '<?xml version="1.0" encoding="UTF-8"?><Bxml><StartStream name="test_stream"/></Bxml>'
131+
# response: ApiResponse = self.endpoints_api_instance.update_endpoint_bxml_with_http_info(
132+
# self.account_id,
133+
# self.endpoint_id,
134+
# bxml
135+
# )
136+
#
137+
# assert_that(response.status_code, equal_to(204))
138+
# ...
139+
128140
def deleteEndpoint(self):
129141
response: ApiResponse = self.endpoints_api_instance.delete_endpoint_with_http_info(
130142
self.account_id,

0 commit comments

Comments
 (0)