Fail if the two objects are unequal as determined by the '==' operator.
(self, first, second, msg=None)
| 87 | return |
| 88 | |
| 89 | def assertEqual(self, first, second, msg=None): |
| 90 | """Fail if the two objects are unequal as determined by the '==' |
| 91 | operator. |
| 92 | """ |
| 93 | if isinstance(msg, str): |
| 94 | msg = msg.encode() |
| 95 | super(cloudstackTestCase,self).assertEqual(first,second,msg) |
| 96 | |
| 97 | @classmethod |
| 98 | def cleanup_resources(cls, api_client, resources): |
no test coverage detected