Fixing some small bugs related to integration tests (v2)

This commit is contained in:
James Cammarata 2015-06-01 16:41:52 -05:00
commit 4bc7703db3
12 changed files with 81 additions and 39 deletions

View file

@ -59,11 +59,9 @@ class Group:
depth=self.depth,
)
debug("serializing group, result is: %s" % result)
return result
def deserialize(self, data):
debug("deserializing group, data is: %s" % data)
self.__init__()
self.name = data.get('name')
self.vars = data.get('vars', dict())