aboutsummaryrefslogtreecommitdiffhomepage
path: root/python/google/protobuf/internal/wire_format_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/google/protobuf/internal/wire_format_test.py')
-rwxr-xr-xpython/google/protobuf/internal/wire_format_test.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/python/google/protobuf/internal/wire_format_test.py b/python/google/protobuf/internal/wire_format_test.py
index f39035ca..e40a40cc 100755
--- a/python/google/protobuf/internal/wire_format_test.py
+++ b/python/google/protobuf/internal/wire_format_test.py
@@ -34,12 +34,13 @@
__author__ = 'robinson@google.com (Will Robinson)'
-from google.apputils import basetest
+import unittest
+
from google.protobuf import message
from google.protobuf.internal import wire_format
-class WireFormatTest(basetest.TestCase):
+class WireFormatTest(unittest.TestCase):
def testPackTag(self):
field_number = 0xabc
@@ -250,4 +251,4 @@ class WireFormatTest(basetest.TestCase):
if __name__ == '__main__':
- basetest.main()
+ unittest.main()