Skip to content

Commit

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

def test_json_tree_item_append_child(self):
Expand Down

0 comments on commit 6af63de

Please sign in to comment.