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()
5858 {
5959 using var ctx = new Context ( ) ;
6060 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.
6564 }
6665
6766 [ TestMethod ]
You can’t perform that action at this time.
0 commit comments