Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
aphralG committed Sep 26, 2023
1 parent 7c16ba2 commit 53232e7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/integration/grpc/grpc_config_apply_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,8 @@ messageLoop:
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Send config apply message
response, err:= utils.ExecuteCommand(testContainer, []string{"ps","-ef","|","grep","nginx"})
log.Info("=====================================")
log.Info(response)
log.Info(err)
response, err := utils.ExecuteCommand(testContainer, []string{"ps", "-ef", "|", "grep", "nginx"})
t.Logf("response: %v", response)
err = commandService.SendConfigApply(nginxId, tt.nginxConfigFileName, tt.messageId)
assert.NoError(t, err)

Expand Down

0 comments on commit 53232e7

Please sign in to comment.