Fix bazel example tests

pull/21458/head
Richard Belleville 5 years ago
parent dc9e20665e
commit 38454eae37
  1. 4
      examples/python/auth/test/_auth_example_test.py
  2. 3
      examples/python/debug/test/_debug_example_test.py

@ -18,8 +18,12 @@ from __future__ import division
from __future__ import print_function
import unittest
import os
import sys
import grpc
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
from examples.python.auth import _credentials
from examples.python.auth import customized_auth_client
from examples.python.auth import customized_auth_server

@ -19,7 +19,10 @@ from __future__ import print_function
import logging
import unittest
import os
import sys
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
from examples.python.debug import debug_server
from examples.python.debug import send_message
from examples.python.debug import get_stats

Loading…
Cancel
Save