Skip to content

Commit

Permalink
fix: Made the read/write tests in OPCUA also not run on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdutz committed Aug 6, 2023
1 parent e7bf7cc commit f87fb3c
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -486,7 +486,8 @@ static void checkForLinux() {
String OS = System.getProperty("os.name").toLowerCase();
return !OS.contains("nix")
&& !OS.contains("nux")
&& !OS.contains("aix");
&& !OS.contains("aix")
&& !OS.contains("mac");
}, "somehow opcua doesn't run properly on linux");
}
}

0 comments on commit f87fb3c

Please sign in to comment.