| Index: infra_libs/ts_mon/common/test/metrics_test.py
|
| diff --git a/infra_libs/ts_mon/common/test/metrics_test.py b/infra_libs/ts_mon/common/test/metrics_test.py
|
| index b064caf0a92849cd07992c491b66e7d300c7a51c..a27833b1fe680b347e792d1a40b5e03174ec780c 100644
|
| --- a/infra_libs/ts_mon/common/test/metrics_test.py
|
| +++ b/infra_libs/ts_mon/common/test/metrics_test.py
|
| @@ -3,6 +3,7 @@
|
| # found in the LICENSE file.
|
|
|
| import sys
|
| +import textwrap
|
| import unittest
|
|
|
| import mock
|
| @@ -21,7 +22,6 @@
|
|
|
| class TestBase(unittest.TestCase):
|
| def setUp(self):
|
| - super(TestBase, self).setUp()
|
| target = targets.TaskTarget('test_service', 'test_job',
|
| 'test_region', 'test_host')
|
| self.mock_state = interface.State(target=target)
|
| @@ -31,7 +31,6 @@
|
|
|
| def tearDown(self):
|
| self.state_patcher.stop()
|
| - super(TestBase, self).tearDown()
|
|
|
|
|
| class MetricTest(TestBase):
|
|
|