@@ -32,7 +32,7 @@ def _make_one(self, project, credentials, **kw):
3232
3333 return _ErrorReportingLoggingAPI (project , credentials , ** kw )
3434
35- @mock .patch ("google.cloud.logging.client. Client" )
35+ @mock .patch ("google.cloud.logging.Client" )
3636 def test_ctor_defaults (self , mocked_cls ):
3737 credentials = _make_credentials ()
3838
@@ -43,7 +43,7 @@ def test_ctor_defaults(self, mocked_cls):
4343 self .PROJECT , credentials , _http = None , client_info = None , client_options = None
4444 )
4545
46- @mock .patch ("google.cloud.logging.client. Client" )
46+ @mock .patch ("google.cloud.logging.Client" )
4747 def test_ctor_explicit (self , mocked_cls ):
4848 credentials = _make_credentials ()
4949 http = mock .Mock ()
@@ -67,7 +67,7 @@ def test_ctor_explicit(self, mocked_cls):
6767 client_options = client_options ,
6868 )
6969
70- @mock .patch ("google.cloud.logging.client. Client" )
70+ @mock .patch ("google.cloud.logging.Client" )
7171 def test_report_error_event (self , mocked_cls ):
7272 credentials = _make_credentials ()
7373 logging_api = self ._make_one (self .PROJECT , credentials )
0 commit comments