diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2016-08-28 18:28:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-28 18:28:24 -0700 |
commit | b50eea8669a74f4ea3f284fcad6ee69d1f944046 (patch) | |
tree | 26fdb9f61ff96be78d66a911f7172e40027ae81e /src/python | |
parent | 4275e60eb686ceb202c042fe578c9cf992e590d0 (diff) | |
parent | 82c01e5a9509adfa4fc4f81edd2cc6f16906e862 (diff) |
Merge pull request #7831 from thunderboltsid/remove-skipif-pypy
remove skipIf from TypeSmokeTest (issue 7672)
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/grpcio_tests/tests/unit/_cython/cygrpc_test.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/python/grpcio_tests/tests/unit/_cython/cygrpc_test.py b/src/python/grpcio_tests/tests/unit/_cython/cygrpc_test.py index 2f50263730..142387d810 100644 --- a/src/python/grpcio_tests/tests/unit/_cython/cygrpc_test.py +++ b/src/python/grpcio_tests/tests/unit/_cython/cygrpc_test.py @@ -114,9 +114,6 @@ class TypeSmokeTest(unittest.TestCase): lambda ignored_a, ignored_b: None, b'') del plugin - @unittest.skipIf( - platform.python_implementation() == "PyPy", - 'TODO(issue 7672): figure out why this fails on PyPy') def testCallCredentialsFromPluginUpDown(self): plugin = cygrpc.CredentialsMetadataPlugin(_metadata_plugin_callback, b'') call_credentials = cygrpc.call_credentials_metadata_plugin(plugin) |