aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_general/tst_rename_file/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_general/tst_rename_file/test.py')
-rw-r--r--tests/system/suite_general/tst_rename_file/test.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/system/suite_general/tst_rename_file/test.py b/tests/system/suite_general/tst_rename_file/test.py
index 0063b638e5..cf47ce8d5b 100644
--- a/tests/system/suite_general/tst_rename_file/test.py
+++ b/tests/system/suite_general/tst_rename_file/test.py
@@ -104,9 +104,8 @@ def renameFile(projectDir, proFile, branch, oldname, newname):
menu = ":Qt Creator.Project.Menu.File_QMenu"
activateItem(waitForObjectItem(menu, "Rename..."))
replaceEdit = waitForObject(":Qt Creator_Utils::NavigationTreeView::QExpandingLineEdit")
- if not (oldname.lower().endswith(".qrc") and JIRA.isBugStillOpen(20057)):
- test.compare(replaceEdit.selectedText, oldname.rsplit(".", 1)[0],
- "Only the filename without the extension is selected?")
+ test.compare(replaceEdit.selectedText, oldname.rsplit(".", 1)[0],
+ "Only the filename without the extension is selected?")
replaceEditorContent(replaceEdit, newname)
type(replaceEdit, "<Return>")
test.verify(waitFor("os.path.exists(newFilePath)", 1000),