diff options
author | Christian Stenger <christian.stenger@digia.com> | 2013-09-20 11:29:25 +0200 |
---|---|---|
committer | Christian Stenger <christian.stenger@digia.com> | 2013-09-20 12:47:39 +0200 |
commit | 5bf5eb17f1370a6324a0ee18a74e3289f22f464b (patch) | |
tree | 889fd71d405ae6013bf877a35f114e35acd73de3 /tests | |
parent | 5d1aece721cc75c40f6e784d7e2c0d98a749ee49 (diff) | |
download | qt-creator-5bf5eb17f1370a6324a0ee18a74e3289f22f464b.tar.gz |
Squish: Fix addBranchWildcardToRoot()
Branch information is now listed in square brackets.
Change-Id: I4f38f2a93b8029ed319fae3a7c32adc0aba50660
Reviewed-by: Robert Loehning <robert.loehning@digia.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/system/shared/editor_utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/system/shared/editor_utils.py b/tests/system/shared/editor_utils.py index 8554d7760c..5ff38ef1b1 100644 --- a/tests/system/shared/editor_utils.py +++ b/tests/system/shared/editor_utils.py @@ -327,8 +327,8 @@ def invokeFindUsage(editor, line, typeOperation, n=1): def addBranchWildcardToRoot(rootNode): pos = rootNode.find(".") if pos == -1: - return rootNode + " (*)" - return rootNode[:pos] + " (*)" + rootNode[pos:] + return rootNode + " [[]*[]]" + return rootNode[:pos] + " [[]*[]]" + rootNode[pos:] def openDocument(treeElement): try: |