aboutsummaryrefslogtreecommitdiff
path: root/python/google/protobuf/pyext/message_factory_cpp2_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/google/protobuf/pyext/message_factory_cpp2_test.py')
-rw-r--r--python/google/protobuf/pyext/message_factory_cpp2_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/google/protobuf/pyext/message_factory_cpp2_test.py b/python/google/protobuf/pyext/message_factory_cpp2_test.py
index 32ab4f85..ce4ae861 100644
--- a/python/google/protobuf/pyext/message_factory_cpp2_test.py
+++ b/python/google/protobuf/pyext/message_factory_cpp2_test.py
@@ -33,19 +33,19 @@
"""Tests for google.protobuf.message_factory."""
import os
+import unittest
os.environ['PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION'] = 'cpp'
os.environ['PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION_VERSION'] = '2'
# We must set the implementation version above before the google3 imports.
# pylint: disable=g-import-not-at-top
-from google.apputils import basetest
from google.protobuf.internal import api_implementation
# Run all tests from the original module by putting them in our namespace.
# pylint: disable=wildcard-import
from google.protobuf.internal.message_factory_test import *
-class ConfirmCppApi2Test(basetest.TestCase):
+class ConfirmCppApi2Test(unittest.TestCase):
def testImplementationSetting(self):
self.assertEqual('cpp', api_implementation.Type())
@@ -53,4 +53,4 @@ class ConfirmCppApi2Test(basetest.TestCase):
if __name__ == '__main__':
- basetest.main()
+ unittest.main()