Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
IanBoden committed Jun 19, 2024
1 parent dcff7f2 commit fdee55e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/test_api_state_thingState.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ def testCleanup(self):
if li.name in (TestThing.testLogicalInterfaceName, TestThing.testThingLISchema):
print("Deleting old test LI: %s" % (li))
del self.appClient.state.draft.logicalInterfaces[li.id]
else:
print("NOT DELETING LI: %s" % (li))

for li in self.appClient.state.active.logicalInterfaces:
print("FOUND ACTIVE LI: %s" % (li))

# delete any left over physical interfaces, event type and schema
for pi in self.appClient.state.draft.physicalInterfaces:
Expand Down

0 comments on commit fdee55e

Please sign in to comment.