Skip to content

Commit

Permalink
Fix test of processing statuses in table
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed Jan 23, 2025
1 parent a05952b commit 95fb981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,7 @@ def test_processing_status(mock_db_with_data, qtbot):

def shows_as_processing(run):
row = tbl.find_row(1234, run)
runnr_s = tbl.item(row, 2).data(Qt.ItemDataRole.DisplayRole)
runnr_s = tbl.verticalHeaderItem(row).data(Qt.ItemDataRole.DisplayRole)
return "⚙️" in runnr_s

d = {'proposal': 1234, 'data': 'all', 'hostname': '', 'username': '',
Expand Down

0 comments on commit 95fb981

Please sign in to comment.