f96797a006
Some of tests use different method of assertTrue(isinstance(A, B)) or assertEqual(type(A), B). The correct way is to use assertIsInstance(A, B) provided by testtools. Change-Id: Ib44771be349f359376e35d7673192bc62805b1c2 Closes-Bug: #1268480