File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -601,7 +601,8 @@ public void CanHandleTwoStatusEntryChangesWithTheSamePath()
601
601
602
602
using ( Repository repo = new Repository ( path ) )
603
603
{
604
- Blob mainContent = OdbHelper . CreateBlob ( repo , "awesome content\n " ) ;
604
+ var awesomeContent = new string ( '!' , 4096 ) + "awesome content\n " ;
605
+ Blob mainContent = OdbHelper . CreateBlob ( repo , awesomeContent ) ;
605
606
Blob linkContent = OdbHelper . CreateBlob ( repo , "../../objc/Nu.h" ) ;
606
607
607
608
const string filePath = "include/Nu/Nu.h" ;
@@ -620,7 +621,7 @@ public void CanHandleTwoStatusEntryChangesWithTheSamePath()
620
621
621
622
string parentPath = Path . Combine ( repo . Info . WorkingDirectory , "include/Nu" ) ;
622
623
623
- Touch ( parentPath , "Nu.h" , "awesome content \n " ) ;
624
+ Touch ( parentPath , "Nu.h" , awesomeContent ) ;
624
625
625
626
RepositoryStatus status = repo . RetrieveStatus (
626
627
new StatusOptions { DetectRenamesInIndex = true , DetectRenamesInWorkDir = true } ) ;
You can’t perform that action at this time.
0 commit comments