Skip to content

Commit

Permalink
Automated change: Fix sanity tests
Browse files Browse the repository at this point in the history
  • Loading branch information
markdroth committed Nov 14, 2024
1 parent 0b26fbf commit ebc9f9a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/core/util/http_client/httpcli_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
#include "src/core/util/subprocess.h"
#include "src/core/util/time.h"
#include "src/core/util/time_util.h"
#include "test/core/util/http_client/httpcli_test_util.h"
#include "test/core/test_util/fake_udp_and_tcp_server.h"
#include "test/core/test_util/port.h"
#include "test/core/test_util/test_config.h"
#include "test/core/util/http_client/httpcli_test_util.h"

namespace {

Expand Down
7 changes: 4 additions & 3 deletions test/core/util/http_client/httpcli_test_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,10 @@ HttpRequestTestServer StartHttpRequestTestServer(int argc, char** argv,
} else {
char* python_wrapper_arg;
char* test_server_arg;
gpr_asprintf(&python_wrapper_arg, "%s/test/core/util/http_client/python_wrapper.sh",
root);
gpr_asprintf(&test_server_arg, "%s/test/core/util/http_client/test_server.py", root);
gpr_asprintf(&python_wrapper_arg,
"%s/test/core/util/http_client/python_wrapper.sh", root);
gpr_asprintf(&test_server_arg,
"%s/test/core/util/http_client/test_server.py", root);
args.push_back(python_wrapper_arg);
args.push_back(test_server_arg);
}
Expand Down
6 changes: 3 additions & 3 deletions test/core/util/http_client/httpcli_test_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
// limitations under the License.
//

#ifndef GRPC_TEST_CORE_HTTP_HTTPCLI_TEST_UTIL_H
#define GRPC_TEST_CORE_HTTP_HTTPCLI_TEST_UTIL_H
#ifndef GRPC_TEST_CORE_UTIL_HTTP_CLIENT_HTTPCLI_TEST_UTIL_H
#define GRPC_TEST_CORE_UTIL_HTTP_CLIENT_HTTPCLI_TEST_UTIL_H

#include <grpc/support/port_platform.h>

Expand All @@ -35,4 +35,4 @@ HttpRequestTestServer StartHttpRequestTestServer(int argc, char** argv,
} // namespace testing
} // namespace grpc_core

#endif // GRPC_TEST_CORE_HTTP_HTTPCLI_TEST_UTIL_H
#endif // GRPC_TEST_CORE_UTIL_HTTP_CLIENT_HTTPCLI_TEST_UTIL_H
2 changes: 1 addition & 1 deletion test/core/util/http_client/httpscli_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
#include "src/core/util/time.h"
#include "src/core/util/time_util.h"
#include "src/core/util/uri.h"
#include "test/core/util/http_client/httpcli_test_util.h"
#include "test/core/test_util/fake_udp_and_tcp_server.h"
#include "test/core/test_util/test_config.h"
#include "test/core/util/http_client/httpcli_test_util.h"

namespace {

Expand Down

0 comments on commit ebc9f9a

Please sign in to comment.