Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated fix for refs/heads/interop #284

Open
wants to merge 1 commit into
base: interop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Automated change: Fix sanity tests
  • Loading branch information
Vignesh2208 authored Oct 12, 2023
commit 6cfecf23117552dbf4f0ae7aa7b26009fb3272d9
3 changes: 1 addition & 2 deletions src/python/grpcio_tests/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,7 @@ def run_client(self):
from tests.interop import client

sys.argv[1:] = self.args.split()
client.test_interoperability(
client.parse_interop_client_args(sys.argv))
client.test_interoperability(client.parse_interop_client_args(sys.argv))


class RunFork(test.test):
Expand Down
4 changes: 2 additions & 2 deletions src/python/grpcio_tests/tests/stress/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
import queue
import threading

import grpc

from absl import app
from absl.flags import argparse_flags
import grpc

from src.proto.grpc.testing import metrics_pb2_grpc
from src.proto.grpc.testing import test_pb2_grpc
from tests.interop import methods
Expand Down