| Index: infra_libs/ts_mon/common/test/helpers_test.py
|
| diff --git a/infra_libs/ts_mon/test/helpers_test.py b/infra_libs/ts_mon/common/test/helpers_test.py
|
| similarity index 92%
|
| rename from infra_libs/ts_mon/test/helpers_test.py
|
| rename to infra_libs/ts_mon/common/test/helpers_test.py
|
| index 2a070e74512460c9f860ee0577c43d1ba201ece6..2a74f28ff5095e360a0522adce84f2386b87a122 100755
|
| --- a/infra_libs/ts_mon/test/helpers_test.py
|
| +++ b/infra_libs/ts_mon/common/test/helpers_test.py
|
| @@ -6,8 +6,12 @@ import unittest
|
|
|
| import mock
|
|
|
| -from infra_libs.ts_mon import helpers
|
| -from infra_libs.ts_mon import metrics
|
| +try:
|
| + from infra_libs.ts_mon.common import metrics
|
| + from infra_libs.ts_mon.common import helpers
|
| +except ImportError:
|
| + from common import metrics
|
| + from common import helpers
|
|
|
|
|
| class ScopedIncrementCounterTest(unittest.TestCase):
|
|
|