aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-04-20 09:58:06 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-04-20 09:58:06 -0700
commit62bc1846b7a2d83cbdd9e31ac3921f76df570098 (patch)
tree9fb59961d4826527504fc15a1271cf166893117a
parent12088b26d9e2c625aa3754fad59888ac5e6f94e5 (diff)
Uncomment accidentally commented stuff
-rw-r--r--src/python/src/grpc/_adapter/_low_test.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/python/src/grpc/_adapter/_low_test.py b/src/python/src/grpc/_adapter/_low_test.py
index 9ba69addf4..826c586a1e 100644
--- a/src/python/src/grpc/_adapter/_low_test.py
+++ b/src/python/src/grpc/_adapter/_low_test.py
@@ -43,7 +43,6 @@ _BYTE_SEQUENCE_SEQUENCE = tuple(
bytes(bytearray((row + column) % 256 for column in range(row)))
for row in range(_STREAM_LENGTH))
-"""
class LonelyClientTest(unittest.TestCase):
def testLonelyClient(self):
@@ -295,7 +294,6 @@ class EchoTest(unittest.TestCase):
def testManyManyByteEchoes(self):
self._perform_echo_test(_BYTE_SEQUENCE_SEQUENCE)
-"""
class CancellationTest(unittest.TestCase):
@@ -404,13 +402,11 @@ class CancellationTest(unittest.TestCase):
self.assertSequenceEqual(test_data, client_data)
-"""
class ExpirationTest(unittest.TestCase):
@unittest.skip('TODO(nathaniel): Expiration test!')
def testExpiration(self):
pass
-"""
if __name__ == '__main__':