Fixed MacOS error.

This commit is contained in:
NissimHadar 2018-10-10 08:12:05 -07:00
parent 2b59180fef
commit 1d09f6efef

View file

@ -532,7 +532,7 @@ void TestRunner::parseBuildInformation() {
QString platformOfInterest;
#ifdef Q_OS_WIN
platformOfInterest = "windows";
#elif Q_OS_MAC
#elif defined(Q_OS_MAC)
platformOfInterest = "mac";
#endif
QDomElement element = domDocument.documentElement();