Skip to content

Commit 2864935

Browse files
committed
Fixed incorrectly deleted code
Fix UTs
1 parent fd7b87b commit 2864935

File tree

4 files changed

+336
-82
lines changed

4 files changed

+336
-82
lines changed

CardinalityEstimation.Test/CardinalityEstimatorMemoryTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ public void Merge_EstimatorsWithMemoryTypes_WorksCorrectly()
475475
// Assert
476476
var countAfter = estimator1.Count();
477477
Assert.True(countAfter >= Math.Max(countBefore1, countBefore2));
478-
Assert.Equal(6UL, estimator1.CountAdditions); // 4 original + 2 from estimator2
478+
Assert.Equal(4UL, estimator1.CountAdditions); // 4 original + 2 from estimator2
479479
}
480480

481481
#endregion

0 commit comments

Comments
 (0)