File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -58,10 +58,9 @@ public void TestIsFileSystemSupported()
58
58
{
59
59
using var ctx = new Context ( ) ;
60
60
Assert . IsTrue ( ctx . IsFileSystemSupported ( FileSystemType . InMemory ) ) ;
61
- Assert . IsTrue ( ctx . IsFileSystemSupported ( FileSystemType . S3 ) ) ;
62
- Assert . IsTrue ( ctx . IsFileSystemSupported ( FileSystemType . Azure ) ) ;
63
- Assert . IsTrue ( ctx . IsFileSystemSupported ( FileSystemType . GoogleCloudStorage ) ) ;
64
- Assert . AreEqual ( ! OperatingSystem . IsWindows ( ) , ctx . IsFileSystemSupported ( FileSystemType . Hdfs ) ) ;
61
+ // While the release binaries support all other filesystems (except for
62
+ // HDFS), binaries from nightly builds and other custom builds may not.
63
+ // MemFS is the only filesystem that is known to be always supported.
65
64
}
66
65
67
66
[ TestMethod ]
You can’t perform that action at this time.
0 commit comments