13b5a5ade1
Currently, the FakeSchemaAPI in tests/utils has an overriden __init__ method which simply calls super of FakeAPI and doesn't perform any extra operations. This is redundant, because same effect will be achieved when __init__ definition is omitted in FakeSchemaAPI. Additionally it uses 'cls' as first param instead of 'self' which breaks naming convention. Change-Id: I3e72adfbc7b67076748f640d74507ff28c6060d7 Closes-Bug: 1418508