@@ -67,6 +67,7 @@ class TestThing(testUtils.AbstractTest):
6767 testDeviceTypeName = "python-api-test-DeviceType"
6868 updatedDeviceTypeName = "python-api-test-DeviceType-updated"
6969 thingSchemaName = "thingSchema"
70+ thingSchemaNameOld = "testThingSchema"
7071 thingLISchemaName = "thingLISchema"
7172 thingTypeId = "thingTypeId"
7273
@@ -144,6 +145,7 @@ def testCleanup(self):
144145 TestThing .testLISchemaName ,
145146 TestThing .thingLISchemaName ,
146147 TestThing .thingSchemaName ,
148+ TestThing .thingSchemaNameOld ,
147149 ):
148150 print ("Deleting old test schema instance: %s" % (s ))
149151 del self .appClient .state .draft .schemas [s .id ]
@@ -194,6 +196,7 @@ def doesDTNameExist(self, name):
194196 def createSchema (self , name , schemaFileName , schemaContents , description ):
195197 jsonSchemaContents = json .dumps (schemaContents )
196198 createdSchema = self .appClient .state .draft .schemas .create (name , schemaFileName , jsonSchemaContents , description )
199+ print ("Created schema %s" % (createdSchema ))
197200 return createdSchema
198201
199202 def createEventType (self , name , description , schemaId ):
0 commit comments