return thing_arn when calling list_things

This commit is contained in:
Stephan Huber 2018-06-04 15:58:27 +02:00
parent 821cd5376d
commit afa6ae288d

View File

@ -32,6 +32,7 @@ class FakeThing(BaseModel):
def to_dict(self, include_default_client_id=False):
obj = {
'thingName': self.thing_name,
'thingArn': self.arn,
'attributes': self.attributes,
'version': self.version
}