Skip to content

Commit

Permalink
Remove accidentally added fmt.Printf from debugging
Browse files Browse the repository at this point in the history
Accidentally added in vitessio#10956

Signed-off-by: Dirkjan Bussink <d.bussink@gmail.com>
  • Loading branch information
dbussink committed Aug 9, 2022
1 parent a56442a commit abac8d7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions go/vt/vtctld/vtctld_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ package vtctld

import (
"flag"
"fmt"
"io/ioutil"
"net/http"
"net/http/httptest"
Expand All @@ -40,7 +39,6 @@ func TestWebApp(t *testing.T) {
defer res.Body.Close()

data, err := ioutil.ReadAll(res.Body)
fmt.Printf("body: %s\n", string(data))

assert.NoError(t, err)
assert.Contains(t, string(data), "<!doctype html>")
Expand Down

0 comments on commit abac8d7

Please sign in to comment.