aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/distrib
diff options
context:
space:
mode:
authorGravatar kpayson64 <kpayson@google.com>2016-08-15 10:53:02 -0700
committerGravatar GitHub <noreply@github.com>2016-08-15 10:53:02 -0700
commite3ce8bd5031e037cf8b9b08b28d0bb94e003650b (patch)
tree3392659318db286a66f67a6549576d383e14be03 /test/distrib
parentec96e5b26e879aee1c709e3e82a9ae1ddf40f411 (diff)
parent5450f05e0c789ea48ec90483a8520062b8d828c0 (diff)
Merge pull request #7702 from nathanielmanistaatgoogle/distrib-interop-stress-ga-api
Migrate distrib, interop, and stress to GA API
Diffstat (limited to 'test/distrib')
-rw-r--r--test/distrib/python/distribtest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/distrib/python/distribtest.py b/test/distrib/python/distribtest.py
index dc20688140..0125ee6a56 100644
--- a/test/distrib/python/distribtest.py
+++ b/test/distrib/python/distribtest.py
@@ -27,10 +27,10 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-from grpc.beta import implementations
+import grpc
# This code doesn't do much but makes sure the native extension is loaded
# which is what we are testing here.
-channel = implementations.insecure_channel('localhost', 1000)
+channel = grpc.insecure_channel('localhost:1000')
del channel
print 'Success!'