Skip to content
This repository was archived by the owner on Mar 4, 2026. It is now read-only.

Commit 2f7f176

Browse files
committed
tests: use builtin assertIsInstance
1 parent dcd13e0 commit 2f7f176

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test_packet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def test_list_operating_systems(self):
3636

3737
def test_list_projects(self):
3838
projects = self.manager.list_projects()
39-
self.assertTrue(isinstance(projects, list))
39+
self.assertIsInstance(projects, list)
4040
for project in projects:
4141
str(project)
4242
repr(project)

0 commit comments

Comments
 (0)