Minor clean-up.

This commit is contained in:
NissimHadar 2018-11-01 08:17:35 -07:00
parent 6121d7022c
commit 8e3f2d3601
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ void AWSInterface::createWebPageFromResults(const QString& testResults,
void AWSInterface::extractTestFailuresFromZippedFolder() {
// For a test results zip file called `D:/tt/TestResults--2018-10-02_16-54-11(9426)[DESKTOP-PMKNLSQ].zip`
// the folder will be called `TestResults--2018-10-02_16-54-11(9426)[DESKTOP-PMKNLSQ]`
// and, this folder will be in the workign directory
// and, this folder will be in the working directory
QStringList parts =_testResults.split('/');
QString zipFolderName = _snapshotDirectory + "/" + parts[parts.length() - 1].split('.')[0];
if (QDir(zipFolderName).exists()) {

View file

@ -26,7 +26,7 @@ public:
explicit AWSInterface(QObject* parent = 0);
void createWebPageFromResults(const QString& testResults,
const QString& testDirectory,
const QString& snapshotDirectory,
QCheckBox* updateAWSCheckBox,
QLineEdit* urlLineEdit);