docs: changed http to https in setup, updated github links (#892)


diff --git a/docs/mocks.md b/docs/mocks.md
index d3d6ae4..72256ac 100644
--- a/docs/mocks.md
+++ b/docs/mocks.md
@@ -1,8 +1,8 @@
 # Mocks
 
-The use of [Mock objects](http://en.wikipedia.org/wiki/Mock_object) is a standard testing methodology for Python and other object-oriented languages. This library defines Mock classes that simulate responses to API calls. You can use them to test how your code handles basic interactions with Google APIs.
+The use of [Mock objects](https://en.wikipedia.org/wiki/Mock_object) is a standard testing methodology for Python and other object-oriented languages. This library defines Mock classes that simulate responses to API calls. You can use them to test how your code handles basic interactions with Google APIs.
 
-> **Note:** Many of the [Python Client Library test scripts](https://github.com/google/google-api-python-client/tree/master/tests) use these classes.
+> **Note:** Many of the [Python Client Library test scripts](https://github.com/googleapis/google-api-python-client/tree/master/tests) use these classes.
 
 ## HttpMock
 
@@ -103,4 +103,4 @@
                 developerKey=your_api_key)
 request = service.volumes().list(source='public', q='android')
 response = request.execute()
-```
\ No newline at end of file
+```