Skip to content
This repository has been archived by the owner on Jul 13, 2024. It is now read-only.

Commit

Permalink
complete for ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahdi-Shah committed Feb 17, 2024
1 parent 5fe406e commit 5ac12fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion TDD/SearchTextTest/PathKeeperTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using FluentAssertions;
using SearchText;

namespace SearchTextTest;
Expand All @@ -17,7 +18,7 @@ public void GetIthPathCheck()
{
string path = "./../../../../EnglishData";
PathKeeper pathKeeper = PathKeeper.Create(path);
Assert.Equal(path + "\\58052", pathKeeper.GetIthPath(10));
Assert.Equal(path + "/58052", pathKeeper.GetIthPath(10));
}
}

Expand Down

0 comments on commit 5ac12fd

Please sign in to comment.