Apply gofmt

Previous PR from Simon or Ken broke build due to missing gofmt
in the PR. This PR applies it to resolve the build issue.

Signed-off-by: Alex Ellis (VMware) <alexellis2@gmail.com>
This commit is contained in:
Alex Ellis (VMware)
2018-04-11 20:46:20 -07:00
parent cb15c11061
commit 811bbe6031
5 changed files with 8 additions and 8 deletions

View File

@ -17,7 +17,7 @@ func TestDisabledScale(t *testing.T) {
}
}
func TestParameterEdge(t *testing.T){
func TestParameterEdge(t *testing.T) {
minReplicas := uint64(0)
scalingFactor := uint64(0)
newReplicas := CalculateReplicas("firing", DefaultMinReplicas, DefaultMaxReplicas, minReplicas, scalingFactor)
@ -27,7 +27,7 @@ func TestParameterEdge(t *testing.T){
}
}
func TestMaxScale(t *testing.T){
func TestMaxScale(t *testing.T) {
minReplicas := uint64(1)
scalingFactor := uint64(100)
newReplicas := CalculateReplicas("firing", DefaultMinReplicas, DefaultMaxReplicas, minReplicas, scalingFactor)
@ -85,4 +85,4 @@ func TestBackingOff(t *testing.T) {
t.Log("Expected backing off to 1 replica")
t.Fail()
}
}
}