Skip to content

Commit

Permalink
more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
IanBoden committed Jun 19, 2024
1 parent 4f63b67 commit 6f43ee4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test_api_state_thingState.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,10 @@ def testDeletePreReqs(self):
del self.appClient.state.draft.schemas[TestThing.createdLISchema.id]
assert self.doesSchemaNameExist(TestThing.testLISchemaName) == False

for sc in self.appClient.state.draft.schemas.find({"name": TestThing.thingSchemaName}):
print("WHAT SCHEMA NOW: %s" % (sc))
print("ID: %s" % (TestThing.createdThingSchema.id))
print(self.appClient.state.draft.schemas[TestThing.createdThingSchema.id])
del self.appClient.state.draft.schemas[TestThing.createdThingSchema.id]
assert self.doesSchemaNameExist(TestThing.thingSchemaName) == False
del self.appClient.state.draft.schemas[TestThing.createdThingLISchema.id]
Expand Down

0 comments on commit 6f43ee4

Please sign in to comment.