This commit is contained in:
NissimHadar 2018-11-01 17:31:10 -07:00
parent 50d1beb95f
commit 470a490494

View file

@ -203,9 +203,9 @@ int TestScriptingInterface::getOtherAvatarsReplicaCount() {
QString TestScriptingInterface::getOperatingSystemType() {
#ifdef Q_OS_WIN
return "WINDOWS";
#elif #defined Q_MAC_OS
#elif defined Q_MAC_OS
return "MACOS";
#else
return "UNKNOWN";
#endif
}
}