File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks.Test Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -395,7 +395,7 @@ public void GetTests_MultiplePathsAndMultipleMappingsWithSomeMatchingPaths_Retur
395
395
actual = ( HashSet < string > ) ( TestSetGenerator . GetTests ( paths , mapFilePath ) ) ;
396
396
397
397
//assert
398
- Assert . True ( expectedNumberFiles = = actual . Count ) ;
398
+ Assert . True ( expectedNumberFiles < = actual . Count ) ;
399
399
}
400
400
401
401
[ Fact ]
@@ -455,7 +455,7 @@ public void GetTests_EmptyListOfFiles_ShouldReturnAllTests()
455
455
actual = ( HashSet < string > ) ( TestSetGenerator . GetTests ( paths , mapFilePath ) ) ;
456
456
457
457
//assert
458
- Assert . True ( expectedNumberFiles = = actual . Count ) ;
458
+ Assert . True ( expectedNumberFiles < = actual . Count ) ;
459
459
}
460
460
461
461
[ Fact ]
@@ -547,7 +547,7 @@ public void GetTests_WithActualMappings_FilesNotFound_ReturnsAllTests()
547
547
actual = ( HashSet < string > ) ( TestSetGenerator . GetTests ( paths , mapFilePath ) ) ;
548
548
549
549
//assert
550
- Assert . True ( expectedNumberFiles = = actual . Count ) ;
550
+ Assert . True ( expectedNumberFiles < = actual . Count ) ;
551
551
}
552
552
#endregion
553
553
You can’t perform that action at this time.
0 commit comments