Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public async Task Exists_File_ShouldReturnFalse(string path)
[Fact]
public async Task Exists_ForwardSlash_ShouldReturnTrue()
{
FileSystem.InitializeIn("D:");
FileSystem.InitializeIn("/");

bool result = FileSystem.Directory.Exists("/");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public async Task Exists_File_ShouldReturnFalse(string path)
[Fact]
public async Task Exists_ForwardSlash_ShouldReturnTrue()
{
FileSystem.InitializeIn("D:");
FileSystem.InitializeIn("/");

IDirectoryInfo sut = FileSystem.DirectoryInfo.New("/");

Expand Down
Loading