aboutsummaryrefslogtreecommitdiff
path: root/tests/__init__.py
diff options
context:
space:
mode:
authorPat Ferate <pferate+github@gmail.com>2016-08-01 13:17:14 -0700
committerPat Ferate <pferate+github@gmail.com>2016-08-04 14:11:25 -0700
commit2f5c53b1fa6a2325427da0a3b63d4dc7ddc4261e (patch)
tree43b2f5f72197c16f391a8ad26c607a3ef73040ce /tests/__init__.py
parent0dc30bc03375f7dd4525b95f4f641417e947f28b (diff)
downloadoauth2client-2f5c53b1fa6a2325427da0a3b63d4dc7ddc4261e.tar.gz
Merge util.py and _helpers.py
A new file, `_helpers.py`, was created without realizing that `utils.py` existed for the same purpose. Moving all to `_helpers.py`.
Diffstat (limited to 'tests/__init__.py')
-rw-r--r--tests/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
index 5f6567c..5e20108 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -12,11 +12,11 @@
"""Test package set-up."""
-from oauth2client import util
+from oauth2client import _helpers
__author__ = 'afshar@google.com (Ali Afshar)'
def setup_package():
"""Run on testing package."""
- util.positional_parameters_enforcement = util.POSITIONAL_EXCEPTION
+ _helpers.positional_parameters_enforcement = _helpers.POSITIONAL_EXCEPTION