From 63896d5d99ec234068e7652578aca9b3e6cd2503 Mon Sep 17 00:00:00 2001 From: Dmitry Avdeev Date: Tue, 1 Dec 2009 14:26:27 +0300 Subject: [PATCH] Win32fs enabled in tests --- .../src/com/intellij/openapi/vfs/newvfs/persistent/RefreshWorker.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platform/platform-impl/src/com/intellij/openapi/vfs/newvfs/persistent/RefreshWorker.java b/platform/platform-impl/src/com/intellij/openapi/vfs/newvfs/persistent/RefreshWorker.java index a3cd8b45dc..5afbe94159 100644 --- a/platform/platform-impl/src/com/intellij/openapi/vfs/newvfs/persistent/RefreshWorker.java +++ b/platform/platform-impl/src/com/intellij/openapi/vfs/newvfs/persistent/RefreshWorker.java @@ -19,7 +19,6 @@ */ package com.intellij.openapi.vfs.newvfs.persistent; -import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.util.SystemInfo; import com.intellij.openapi.util.registry.Registry; import com.intellij.openapi.vfs.LocalFileSystem; @@ -59,7 +58,7 @@ public class RefreshWorker { } else { if (delegate.getProtocol().equals(LocalFileSystem.PROTOCOL) && SystemInfo.isWindows && root.isDirectory() && - Registry.is("filesystem.useNative") && !ApplicationManager.getApplication().isUnitTestMode()) { + Registry.is("filesystem.useNative")) { delegate = Win32LocalFileSystem.getWin32Instance(); } -- 2.11.4.GIT