gofmt rkt.go, rkt_test.go

This commit is contained in:
JulienBalestra
2017-02-21 23:06:13 +01:00
parent 89e1382dd9
commit 7de2d51f90
2 changed files with 7 additions and 7 deletions

View File

@@ -1955,9 +1955,9 @@ func TestPreparePodArgs(t *testing.T) {
func TestConstructSyslogIdentifier(t *testing.T) {
testCases := []struct {
podName string
podGenerateName string
identifier string
podName string
podGenerateName string
identifier string
}{
{
"prometheus-node-exporter-rv90m",
@@ -1979,4 +1979,4 @@ func TestConstructSyslogIdentifier(t *testing.T) {
identifier := constructSyslogIdentifier(testCase.podGenerateName, testCase.podName)
assert.Equal(t, testCase.identifier, identifier, fmt.Sprintf("Test case #%d", i))
}
}
}