Skip to content

Commit

Permalink
Object Explorer: Update root children row count
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz committed Apr 10, 2020
1 parent 88c8f24 commit 5e3e8e6
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -129,8 +129,8 @@ def test_objectexplorer_collection_types(objectexplorer, params):
model = editor.obj_tree.model()
# The row for the variable
assert model.rowCount() == 1
# Root row without children
assert model.rowCount(model.index(0, 0)) == 0
# Root row without children: 71 in Python 2, 78 in Python 3
assert model.rowCount(model.index(0, 0)) in [71, 78]
assert model.columnCount() == 11


Expand Down

0 comments on commit 5e3e8e6

Please sign in to comment.