aboutsummaryrefslogtreecommitdiff
path: root/python/google/protobuf/internal/proto_builder_test.py
diff options
context:
space:
mode:
authorTamir Duberstein <tamird@gmail.com>2015-01-13 14:47:32 -0500
committerTamir Duberstein <tamird@gmail.com>2015-04-10 19:43:51 -0400
commit9f42f5f4a423b923f7b07ae8c5e8db4943df49c6 (patch)
treefd376cb74cae08e5bc77a8f23a797d8d5f49cc44 /python/google/protobuf/internal/proto_builder_test.py
parentdab96f19ee2cb1dab5a403987329326ee23c2191 (diff)
downloadprotobuf-9f42f5f4a423b923f7b07ae8c5e8db4943df49c6.tar.gz
protobuf-9f42f5f4a423b923f7b07ae8c5e8db4943df49c6.tar.bz2
protobuf-9f42f5f4a423b923f7b07ae8c5e8db4943df49c6.zip
[PYTHON] Drop dependency on 'google.apputils'.
Use stdlib's 'unittest' instead.
Diffstat (limited to 'python/google/protobuf/internal/proto_builder_test.py')
-rw-r--r--python/google/protobuf/internal/proto_builder_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/google/protobuf/internal/proto_builder_test.py b/python/google/protobuf/internal/proto_builder_test.py
index c74db7e7..9229205a 100644
--- a/python/google/protobuf/internal/proto_builder_test.py
+++ b/python/google/protobuf/internal/proto_builder_test.py
@@ -32,7 +32,7 @@
"""Tests for google.protobuf.proto_builder."""
-from google.apputils import basetest
+import unittest
from google.protobuf import descriptor_pb2
from google.protobuf import descriptor_pool
@@ -40,7 +40,7 @@ from google.protobuf import proto_builder
from google.protobuf import text_format
-class ProtoBuilderTest(basetest.TestCase):
+class ProtoBuilderTest(unittest.TestCase):
def setUp(self):
self._fields = {
@@ -74,4 +74,4 @@ class ProtoBuilderTest(basetest.TestCase):
if __name__ == '__main__':
- basetest.main()
+ unittest.main()