aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Tim Emiola <tbetbetbe@users.noreply.github.com>2015-02-19 08:56:05 -0800
committerGravatar Tim Emiola <tbetbetbe@users.noreply.github.com>2015-02-19 08:56:05 -0800
commit222fbdf317d64fae2aa9634b064e1bebf1505578 (patch)
treecd05550659f08021e3f41191776c7d1d05545421
parente2e081a32e4fb28ad58d395b67862db7d76124d0 (diff)
parent1fbaad110fb927f7bc074e004e9dd0c6c58673c1 (diff)
Merge pull request #608 from nathanielmanistaatgoogle/interfaces_test_case
Rename base/interfaces_test to base/interfaces_test_case.
-rw-r--r--src/python/src/grpc/framework/base/interfaces_test_case.py (renamed from src/python/src/grpc/framework/base/interfaces_test.py)0
-rw-r--r--src/python/src/grpc/framework/base/packets/implementations_test.py6
2 files changed, 3 insertions, 3 deletions
diff --git a/src/python/src/grpc/framework/base/interfaces_test.py b/src/python/src/grpc/framework/base/interfaces_test_case.py
index b86011c449..b86011c449 100644
--- a/src/python/src/grpc/framework/base/interfaces_test.py
+++ b/src/python/src/grpc/framework/base/interfaces_test_case.py
diff --git a/src/python/src/grpc/framework/base/packets/implementations_test.py b/src/python/src/grpc/framework/base/packets/implementations_test.py
index 628f4b3909..e5855700c7 100644
--- a/src/python/src/grpc/framework/base/packets/implementations_test.py
+++ b/src/python/src/grpc/framework/base/packets/implementations_test.py
@@ -31,7 +31,7 @@
import unittest
-from grpc.framework.base import interfaces_test
+from grpc.framework.base import interfaces_test_case
from grpc.framework.base import util
from grpc.framework.base.packets import implementations
from grpc.framework.foundation import logging_pool
@@ -42,7 +42,7 @@ MAXIMUM_TIMEOUT = 60
class ImplementationsTest(
- interfaces_test.FrontAndBackTest, unittest.TestCase):
+ interfaces_test_case.FrontAndBackTest, unittest.TestCase):
def setUp(self):
self.memory_transmission_pool = logging_pool.pool(POOL_MAX_WORKERS)
@@ -53,7 +53,7 @@ class ImplementationsTest(
self.back_transmission_pool = logging_pool.pool(POOL_MAX_WORKERS)
self.back_utility_pool = logging_pool.pool(POOL_MAX_WORKERS)
self.test_pool = logging_pool.pool(POOL_MAX_WORKERS)
- self.test_servicer = interfaces_test.TestServicer(self.test_pool)
+ self.test_servicer = interfaces_test_case.TestServicer(self.test_pool)
self.front = implementations.front(
self.front_work_pool, self.front_transmission_pool,
self.front_utility_pool)