Removed newlines from e2e log statements.

This commit is contained in:
Jeremy L. Morris
2018-02-17 22:25:38 -05:00
parent 1a6a01ee79
commit e724886ad5
5 changed files with 7 additions and 7 deletions

View File

@@ -161,9 +161,9 @@ var _ = framework.KubeDescribe("Container Manager Misc [Serial]", func() {
},
})
Expect(err).NotTo(HaveOccurred())
framework.Logf("Running containers:\n")
framework.Logf("Running containers:")
for _, c := range containers {
framework.Logf("%+v\n", c)
framework.Logf("%+v", c)
}
}
})