aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/distrib
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2016-08-11 02:24:46 +0000
committerGravatar Nathaniel Manista <nathaniel@google.com>2016-08-11 14:07:37 +0000
commit5450f05e0c789ea48ec90483a8520062b8d828c0 (patch)
treeeed5403f59cc8480dd3fb6abdaee9571cce54529 /test/distrib
parentbaa8c31984ab822fee6bd8ff1cf897d746decd29 (diff)
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!'