openstack-charmers / zaza-openstack-tests

OpenStack Charms Functional Test Library for Zaza
Apache License 2.0
7 stars 77 forks source link

Use self.assertIsInstance() #1130

Closed freyes closed 1 year ago

freyes commented 1 year ago

Replace "assert type(...) is Foo" with "self.assertIsInstance(..., Foo)" this produces a more meaningful test error message and fixes pep8 rule E721[0]

[0] https://www.flake8rules.com/rules/E721.html