Skip to content

Commit

Permalink
Merge pull request #3033 from dhermes/no-more-connection-modules
Browse files Browse the repository at this point in the history
Renaming all remaining connection.py modules as _http.py.
  • Loading branch information
dhermes committed Feb 17, 2017
2 parents b4e9643 + 873c605 commit 3a27f04
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@


from google.cloud.resource_manager.client import Client
from google.cloud.resource_manager.connection import Connection
from google.cloud.resource_manager.project import Project


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@

from google.cloud.client import Client as BaseClient
from google.cloud.iterator import HTTPIterator
from google.cloud.resource_manager.connection import Connection

from google.cloud.resource_manager._http import Connection
from google.cloud.resource_manager.project import Project


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class TestConnection(unittest.TestCase):

@staticmethod
def _get_target_class():
from google.cloud.resource_manager.connection import Connection
from google.cloud.resource_manager._http import Connection

return Connection

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def _make_one(self, *args, **kw):
return self._get_target_class()(*args, **kw)

def test_constructor(self):
from google.cloud.resource_manager.connection import Connection
from google.cloud.resource_manager._http import Connection

http = object()
credentials = _make_credentials()
Expand Down

0 comments on commit 3a27f04

Please sign in to comment.