summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDino Radaković <dinor@google.com>2021-04-09 09:03:55 -0700
committerDino Radaković <dinor@google.com>2021-04-09 09:03:55 -0700
commitad462b70c93bb9408a76837129642c89cd3ce51d (patch)
tree0dc04913ab8a02c3d121e42ebefafcbf1206b789
parent6a5eb807493214be733d4cbb9f07f22fde25284f (diff)
parent9c047902ac8843cd6f972ae9ff472f2baf790879 (diff)
downloadgoogletest-ad462b70c93bb9408a76837129642c89cd3ce51d.tar.gz
googletest-ad462b70c93bb9408a76837129642c89cd3ce51d.zip
Merge pull request #3319 from a-sully:patch-1
PiperOrigin-RevId: 367509099
-rw-r--r--googlemock/include/gmock/gmock-nice-strict.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/googlemock/include/gmock/gmock-nice-strict.h b/googlemock/include/gmock/gmock-nice-strict.h
index 9ee671f6..f6dbcc50 100644
--- a/googlemock/include/gmock/gmock-nice-strict.h
+++ b/googlemock/include/gmock/gmock-nice-strict.h
@@ -141,8 +141,8 @@ class GTEST_INTERNAL_EMPTY_BASE_CLASS NiceMock
!internal::HasStrictnessModifier<MockClass>(),
"Can't apply NiceMock to a class hierarchy that already has a "
"strictness modifier. See "
- "https://github.com/google/googletest/blob/master/googlemock/docs/"
- "cook_book.md#the-nice-the-strict-and-the-naggy-nicestrictnaggy");
+ "https://github.com/google/googletest/blob/master/docs/"
+ "gmock_cook_book.md#the-nice-the-strict-and-the-naggy-nicestrictnaggy");
NiceMock() : MockClass() {
static_assert(sizeof(*this) == sizeof(MockClass),
"The impl subclass shouldn't introduce any padding");
@@ -181,8 +181,8 @@ class GTEST_INTERNAL_EMPTY_BASE_CLASS NaggyMock
!internal::HasStrictnessModifier<MockClass>(),
"Can't apply NaggyMock to a class hierarchy that already has a "
"strictness modifier. See "
- "https://github.com/google/googletest/blob/master/googlemock/docs/"
- "cook_book.md#the-nice-the-strict-and-the-naggy-nicestrictnaggy");
+ "https://github.com/google/googletest/blob/master/docs/"
+ "gmock_cook_book.md#the-nice-the-strict-and-the-naggy-nicestrictnaggy");
public:
NaggyMock() : MockClass() {
@@ -224,8 +224,8 @@ class GTEST_INTERNAL_EMPTY_BASE_CLASS StrictMock
!internal::HasStrictnessModifier<MockClass>(),
"Can't apply StrictMock to a class hierarchy that already has a "
"strictness modifier. See "
- "https://github.com/google/googletest/blob/master/googlemock/docs/"
- "cook_book.md#the-nice-the-strict-and-the-naggy-nicestrictnaggy");
+ "https://github.com/google/googletest/blob/master/docs/"
+ "gmock_cook_book.md#the-nice-the-strict-and-the-naggy-nicestrictnaggy");
StrictMock() : MockClass() {
static_assert(sizeof(*this) == sizeof(MockClass),
"The impl subclass shouldn't introduce any padding");
OpenPOWER on IntegriCloud