Skip to content

Commit

Permalink
Fix println
Browse files Browse the repository at this point in the history
  • Loading branch information
iknite committed Dec 4, 2018
1 parent e5dd3f7 commit 42a77e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/test_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func (s *Service) getSnapshotHandler() func(http.ResponseWriter, *http.Request)
buf, err := b.Encode()
_, err = w.Write([]byte(base64.StdEncoding.EncodeToString(buf)))
if err != nil {
fmt.Println("ERROR: %v", err)
fmt.Printf("ERROR: %v", err)
}
return
}
Expand All @@ -183,7 +183,7 @@ func (s *Service) alertHandler() func(http.ResponseWriter, *http.Request) {
}
_, err = w.Write(b)
if err != nil {
fmt.Println("ERROR: %v", err)
fmt.Printf("ERROR: %v", err)
}
return
} else if r.Method == "POST" {
Expand Down

0 comments on commit 42a77e9

Please sign in to comment.