Skip to content
Snippets Groups Projects
Commit 222fbdf3 authored by Tim Emiola's avatar Tim Emiola
Browse files

Merge pull request #608 from nathanielmanistaatgoogle/interfaces_test_case

Rename base/interfaces_test to base/interfaces_test_case.
parents e2e081a3 1fbaad11
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
import unittest 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 import util
from grpc.framework.base.packets import implementations from grpc.framework.base.packets import implementations
from grpc.framework.foundation import logging_pool from grpc.framework.foundation import logging_pool
...@@ -42,7 +42,7 @@ MAXIMUM_TIMEOUT = 60 ...@@ -42,7 +42,7 @@ MAXIMUM_TIMEOUT = 60
class ImplementationsTest( class ImplementationsTest(
interfaces_test.FrontAndBackTest, unittest.TestCase): interfaces_test_case.FrontAndBackTest, unittest.TestCase):
def setUp(self): def setUp(self):
self.memory_transmission_pool = logging_pool.pool(POOL_MAX_WORKERS) self.memory_transmission_pool = logging_pool.pool(POOL_MAX_WORKERS)
...@@ -53,7 +53,7 @@ class ImplementationsTest( ...@@ -53,7 +53,7 @@ class ImplementationsTest(
self.back_transmission_pool = logging_pool.pool(POOL_MAX_WORKERS) self.back_transmission_pool = logging_pool.pool(POOL_MAX_WORKERS)
self.back_utility_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_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 = implementations.front(
self.front_work_pool, self.front_transmission_pool, self.front_work_pool, self.front_transmission_pool,
self.front_utility_pool) self.front_utility_pool)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment