When firing, newReplicas should be greater than currentReplicas

Signed-off-by: Gede Wahyu <tokekbesi@gmail.com>
This commit is contained in:
Gede Wahyu
2018-12-05 15:21:09 +07:00
committed by Alex Ellis
parent 3bdb194e71
commit 09736be293

View File

@ -105,7 +105,7 @@ func TestScaledUpFrom1(t *testing.T) {
maxReplicas := uint64(5)
scalingFactor := uint64(30)
newReplicas := CalculateReplicas("firing", currentReplicas, maxReplicas, scaling.DefaultMinReplicas, scalingFactor)
if newReplicas == currentReplicas {
if newReplicas <= currentReplicas {
t.Log("Expected newReplicas > currentReplica")
t.Fail()
}
@ -116,7 +116,7 @@ func TestScaledUpWithSmallParam(t *testing.T) {
maxReplicas := uint64(4)
scalingFactor := uint64(1)
newReplicas := CalculateReplicas("firing", currentReplicas, maxReplicas, scaling.DefaultMinReplicas, scalingFactor)
if newReplicas == currentReplicas {
if newReplicas <= currentReplicas {
t.Log("Expected newReplicas > currentReplica")
t.Fail()
}