Skip to content

Commit 5a751ec

Browse files
test: fixed broken INT tests
1 parent 172094d commit 5a751ec

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/integration/test_direct_link_provider_v2.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,8 @@ def _clean_dl_records(self):
8282
for record in resp:
8383
gateway_id = record.get("id")
8484
if ("SDK-PY" in record.get("name")) and (
85-
"delet" not in record.get("operational_status")):
85+
("delet" not in record.get("operational_status")) and ("progress" not in record.get("operational_status"))):
8686
self.delete_gateway(gateway_id=gateway_id)
87-
8887

8988
def delete_gateway(self, gateway_id):
9089
response = self.dl.create_gateway_action(id=gateway_id, action="delete_gateway_approve")

0 commit comments

Comments
 (0)