Skip to content

Commit 1074405

Browse files
committed
Remove redundant test setup, which isn't XFS compat
1 parent 11ec3c8 commit 1074405

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

TestHelpers.Tests/MockDirectoryTests.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -383,11 +383,7 @@ public void MockDirectory_Exists_ShouldReturnTrueForFolderContainingFileAddedToM
383383
public void MockDirectory_Exists_ShouldReturnFalseForIllegalPath(string path)
384384
{
385385
// Arrange
386-
var fileSystem = new MockFileSystem(new Dictionary<string, MockFileData>
387-
{
388-
{ @"c:\foo\bar.txt", new MockFileData("Demo text content") },
389-
{ @"c:\baz.txt", new MockFileData("Demo text content") }
390-
});
386+
var fileSystem = new MockFileSystem();
391387

392388
// Act
393389
var result = fileSystem.Directory.Exists(path);

0 commit comments

Comments
 (0)