Fixing broken OSX unit test caused by inability to hide files on unix (#41)

This commit is contained in:
Benjamin Russell
2016-09-09 15:02:45 -07:00
committed by GitHub
parent 8aa3d524fc
commit 9e492f19f9
2 changed files with 0 additions and 7 deletions

View File

@@ -76,9 +76,6 @@ namespace Microsoft.SqlTools.ServiceLayer.Test.QueryExecution.DataStorage
// ... The file should exist
FileInfo fileInfo = new FileInfo(fileName);
Assert.True(fileInfo.Exists);
// ... The file should be marked as hidden
Assert.True((fileInfo.Attributes & FileAttributes.Hidden) != 0);
}
}
finally