Skip to content

Commit c374da1

Browse files
dinordcopybara-github
authored andcommitted
googletest: Replace http with https in links to docs
This is a prerequisite for #4341 PiperOrigin-RevId: 559132807 Change-Id: Iadc961913e0ff107c5333dae17be5f8638663836
1 parent 61332bd commit c374da1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/faq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ defined such that we can print a value of `FooType`.
607607
608608
In addition, if `FooType` is declared in a name space, the `<<` operator also
609609
needs to be defined in the *same* name space. See
610-
[Tip of the Week #49](http://abseil.io/tips/49) for details.
610+
[Tip of the Week #49](https://abseil.io/tips/49) for details.
611611
612612
## How do I suppress the memory leak messages on Windows?
613613
@@ -628,10 +628,10 @@ mistake in production. Such cleverness also leads to
628628
advise against the practice, and GoogleTest doesn't provide a way to do it.
629629
630630
In general, the recommended way to cause the code to behave differently under
631-
test is [Dependency Injection](http://en.wikipedia.org/wiki/Dependency_injection). You can inject
631+
test is [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection). You can inject
632632
different functionality from the test and from the production code. Since your
633633
production code doesn't link in the for-test logic at all (the
634-
[`testonly`](http://docs.bazel.build/versions/master/be/common-definitions.html#common.testonly) attribute for BUILD targets helps to ensure
634+
[`testonly`](https://docs.bazel.build/versions/master/be/common-definitions.html#common.testonly) attribute for BUILD targets helps to ensure
635635
that), there is no danger in accidentally running it.
636636
637637
However, if you *really*, *really*, *really* have no choice, and if you follow

docs/gmock_for_dummies.md

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

0 commit comments

Comments
 (0)