diff --git a/src/test/java/org/jitsi/meet/test/BandwidthEstimationTest.java b/src/test/java/org/jitsi/meet/test/BandwidthEstimationTest.java index ed211df32..a8f5704e8 100644 --- a/src/test/java/org/jitsi/meet/test/BandwidthEstimationTest.java +++ b/src/test/java/org/jitsi/meet/test/BandwidthEstimationTest.java @@ -390,7 +390,7 @@ public void setupClass() tcScript = System.getProperty(TC_SCRIPT_PROP_NAME); if (tcScript == null) { - if ("linux".equalsIgnoreCase(System.getProperty("os.name"))) + if ("linux".equalsIgnoreCase(System.getProperty("os.name")) || "Mac OS X".equalsIgnoreCase(System.getProperty("os.name"))) { tcScript = DEFAULT_TC_SCRIPT; } @@ -408,7 +408,7 @@ public void setupClass() benchmarkScript = System.getProperty(BENCHMARK_SCRIPT_PROP_NAME); if (benchmarkScript == null) { - if ("linux".equalsIgnoreCase(System.getProperty("os.name"))) + if ("linux".equalsIgnoreCase(System.getProperty("os.name"))|| "Mac OS X".equalsIgnoreCase(System.getProperty("os.name"))) { benchmarkScript = DEFAULT_BENCHMARK_SCRIPT; } @@ -426,7 +426,7 @@ public void setupClass() chromeWrapper = System.getProperty(CHROME_WRAPPER_PROP_NAME); if (chromeWrapper == null) { - if ("linux".equalsIgnoreCase(System.getProperty("os.name"))) + if ("linux".equalsIgnoreCase(System.getProperty("os.name")) || "Mac OS X".equalsIgnoreCase(System.getProperty("os.name"))) { chromeWrapper = DEFAULT_CHROME_WRAPPER; }