From f9396fe5975343a70795311b47ca290e45636ff4 Mon Sep 17 00:00:00 2001 From: NissimHadar Date: Thu, 7 Feb 2019 14:11:59 -0800 Subject: [PATCH] Corrected error message. --- tools/nitpick/src/TestRunnerMobile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/nitpick/src/TestRunnerMobile.cpp b/tools/nitpick/src/TestRunnerMobile.cpp index 10216f248c..e1c82854f4 100644 --- a/tools/nitpick/src/TestRunnerMobile.cpp +++ b/tools/nitpick/src/TestRunnerMobile.cpp @@ -53,7 +53,7 @@ TestRunnerMobile::TestRunnerMobile( if (QProcessEnvironment::systemEnvironment().contains("ADB_PATH")) { QString adbExePath = QProcessEnvironment::systemEnvironment().value("ADB_PATH") + "/platform-tools"; if (!QFile::exists(adbExePath + "/" + _adbExe)) { - QMessageBox::critical(0, _adbExe, QString("Python executable not found in ") + adbExePath); + QMessageBox::critical(0, _adbExe, QString("ADB executable not found in ") + adbExePath); exit(-1); }