Skip to content

Commit

Permalink
Remove unneeded logging from tests making output noisy.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsomething committed Dec 5, 2023
1 parent 20fee99 commit 85583cd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions integration/database_firewall_update_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ var _ = suite("database/firewalls", func(t *testing.T, when spec.G, it spec.S) {
if req.Method == http.MethodPut {
reqBody, err := io.ReadAll(req.Body)
expect.NoError(err)
t.Log(string(reqBody))
t.Log(databasesUpdateFirewallUpdateRequest)
expect.JSONEq(databasesUpdateFirewallUpdateRequest, string(reqBody))
w.Write([]byte(databasesUpdateFirewallRuleResponse))
} else if req.Method == http.MethodGet {
Expand Down
1 change: 0 additions & 1 deletion integration/database_user_create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ var _ = suite("database/user/create", func(t *testing.T, when spec.G, it spec.S)
)

output, err := cmd.CombinedOutput()
t.Log(string(output))
expect.NoError(err, fmt.Sprintf("received error output: %s", output))
expect.Equal(strings.TrimSpace(databaseUserCreateOutput), strings.TrimSpace(string(output)))
})
Expand Down

0 comments on commit 85583cd

Please sign in to comment.