googletest: Replace http with https in links to docs

This is a prerequisite for #4341

PiperOrigin-RevId: 559132807
Change-Id: Iadc961913e0ff107c5333dae17be5f8638663836
This commit is contained in:
Dino Radakovic
2023-08-22 09:20:18 -07:00
committed by Copybara-Service
parent 61332bd7e8
commit c374da15c5
2 changed files with 4 additions and 4 deletions

View File

@@ -97,7 +97,7 @@ tests like this are expensive to run and fragile (What if you just upgraded to a
shiny new graphics card that has better anti-aliasing? Suddenly you have to
update all your golden images.). It would be too painful if all your tests are
like this. Fortunately, you learned about
[Dependency Injection](http://en.wikipedia.org/wiki/Dependency_injection) and know the right thing
[Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection) and know the right thing
to do: instead of having your application talk to the system API directly, wrap
the API in an interface (say, `Turtle`) and code to that interface: