Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
timlinux committed Dec 9, 2024
1 parent 6af63de commit 4f5d809
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/test_json_tree_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,9 @@ def test_json_tree_item_creation(self):
# Test status
expected_status = "WRITE TOOL TIP"
status = item.getStatus()
self.assertTrue(
expected_status == status,
self.assertIs(
expected_status,
status,
msg=f"Expected status of '{status}', got '{expected_status}' {dir(item)}",
)

Expand Down

0 comments on commit 4f5d809

Please sign in to comment.