skip symlink test on windows
This commit is contained in:
parent
9d9df416af
commit
0e0fc77771
|
@ -590,6 +590,10 @@ public class FileSystemResourceTest
|
|||
|
||||
try (Resource base = newResource(dir.toFile()))
|
||||
{
|
||||
if (OS.IS_WINDOWS && base instanceof FileResource)
|
||||
// FileResource doesn't handle symlinks of Windows
|
||||
return;
|
||||
|
||||
Resource resFoo = base.addPath("foo");
|
||||
Resource resBar = base.addPath("bar");
|
||||
|
||||
|
|
Loading…
Reference in New Issue