Skip to content

Commit

Permalink
fix xunit theory
Browse files Browse the repository at this point in the history
  • Loading branch information
olduh29 committed May 16, 2023
1 parent 218c142 commit c0b3a1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SharpFileSystem.Tests/FileSystemPathTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,9 @@ public void AppendDirectoryTest()
[InlineData("/root/subRoot/file.txt","/root/subroot/subsubroot/",false)]
[InlineData("/root/subRoot/","/racine/",false)]

public void testIsRooted(FileSystemPath path, FileSystemPath root, bool isRooted)
public void testIsRooted(string path, string root, bool isRooted)
{
Assert.Equal(isRooted,path.IsRootedBy(root));
Assert.Equal(isRooted,((FileSystemPath)path).IsRootedBy(root));
}
}
}

0 comments on commit c0b3a1b

Please sign in to comment.