aboutsummaryrefslogtreecommitdiff
path: root/tests/test_file.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/test_file.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/test_file.py')
-rw-r--r--tests/test_file.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_file.py b/tests/test_file.py
index 7fdb627..5b1cfc5 100644
--- a/tests/test_file.py
+++ b/tests/test_file.py
@@ -31,9 +31,9 @@ import six
from six.moves import http_client
import unittest2
+from oauth2client import _helpers
from oauth2client import client
from oauth2client import file
-from oauth2client import util
from .http_mock import HttpMockSequence
try:
@@ -83,7 +83,7 @@ class OAuth2ClientFileTests(unittest2.TestCase):
storage = file.Storage(FILENAME)
credentials = storage.get()
warn_mock.assert_called_with(
- util._MISSING_FILE_MESSAGE.format(FILENAME))
+ _helpers._MISSING_FILE_MESSAGE.format(FILENAME))
self.assertIsNone(credentials)
def test_directory_file_storage(self):