Skip to content

Commit

Permalink
Replace unittest2 with unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Sep 30, 2019
1 parent b142d72 commit 7c0966f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apitools/base/py/list_pager_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self):
self.c = 'ccc'


class GetterSetterTest(unittest2.TestCase):
class GetterSetterTest(unittest.TestCase):

def testGetattrNested(self):
o = Example()
Expand All @@ -53,7 +53,7 @@ def testSetattrNested(self):
self.assertEqual(o.c, 'CCC')


class ListPagerTest(unittest2.TestCase):
class ListPagerTest(unittest.TestCase):

def _AssertInstanceSequence(self, results, n):
counter = 0
Expand Down

0 comments on commit 7c0966f

Please sign in to comment.