aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/shared/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/shared/utils.py')
-rw-r--r--tests/system/shared/utils.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/system/shared/utils.py b/tests/system/shared/utils.py
index 853c5f6fde..2e4b5a1dae 100644
--- a/tests/system/shared/utils.py
+++ b/tests/system/shared/utils.py
@@ -464,13 +464,6 @@ def setFixedHelpViewer(helpViewer):
selectFromCombo(":Startup.contextHelpComboBox_QComboBox", mode)
clickButton(waitForObject(":Options.OK_QPushButton"))
-def removePackagingDirectory(projectPath):
- qtcPackaging = os.path.join(projectPath, "qtc_packaging")
- if os.path.exists(qtcPackaging):
- test.log("Removing old packaging directory '%s'" % qtcPackaging)
- deleteDirIfExists(qtcPackaging)
- else:
- test.log("Couldn't remove packaging directory '%s' - did not exist." % qtcPackaging)
# returns the indices from a QAbstractItemModel
def dumpIndices(model, parent=None, column=0):