1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

It is better to add "\n" in printf

Signed-off-by: YuPengZTE <yu.peng36@zte.com.cn>
This commit is contained in:
YuPengZTE 2016-08-23 08:59:45 +08:00
parent 1b954973cc
commit 9b015bd4fd
2 changed files with 2 additions and 2 deletions

View file

@ -218,7 +218,7 @@ func (s *DockerSuite) TestImagesFilterSpaceTrimCase(c *check.C) {
for idx, listing := range imageListings { for idx, listing := range imageListings {
if idx < 4 && !reflect.DeepEqual(listing, imageListings[idx+1]) { if idx < 4 && !reflect.DeepEqual(listing, imageListings[idx+1]) {
for idx, errListing := range imageListings { for idx, errListing := range imageListings {
fmt.Printf("out %d", idx) fmt.Printf("out %d\n", idx)
for _, image := range errListing { for _, image := range errListing {
fmt.Print(image) fmt.Print(image)
} }

View file

@ -87,7 +87,7 @@ func init() {
var err error var err error
dockerBinary, err = exec.LookPath(dockerBinary) dockerBinary, err = exec.LookPath(dockerBinary)
if err != nil { if err != nil {
fmt.Printf("ERROR: couldn't resolve full path to the Docker binary (%v)", err) fmt.Printf("ERROR: couldn't resolve full path to the Docker binary (%v)\n", err)
os.Exit(1) os.Exit(1)
} }
if registryImage := os.Getenv("REGISTRY_IMAGE"); registryImage != "" { if registryImage := os.Getenv("REGISTRY_IMAGE"); registryImage != "" {