Skip to content

Commit

Permalink
[Gui] Issue #3923 - Arbitrary Tree item ordering - Fix move up count
Browse files Browse the repository at this point in the history
  • Loading branch information
pavltom committed Sep 30, 2021
1 parent 4d3289d commit 2a707d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Test/TreeView.py
Expand Up @@ -79,7 +79,7 @@ def trySwapOuterTreeViewItems(self, docItem, transposable):
self.waitForTreeViewSync()

# One move up attempt more to test boundary behaviour
for i in range(len(originalState) - 2):
for i in range(len(originalState) - 1):
FreeCADGui.runCommand("Std_GroupMoveUp")
self.waitForTreeViewSync()

Expand Down

0 comments on commit 2a707d2

Please sign in to comment.