summaryrefslogtreecommitdiffstats
path: root/googletest
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-10-23 15:09:15 (GMT)
committerGitHub <noreply@github.com>2018-10-23 15:09:15 (GMT)
commitb974af79239be20ddec2b170a77af0a6ca92b856 (patch)
treed12b20dffc5d9f0b42c9aeaafd652c4847cb6374 /googletest
parent90c957c4086ec8b5738d9bb4be505e518b996e5a (diff)
downloadgoogletest-b974af79239be20ddec2b170a77af0a6ca92b856.zip
googletest-b974af79239be20ddec2b170a77af0a6ca92b856.tar.gz
googletest-b974af79239be20ddec2b170a77af0a6ca92b856.tar.bz2
Update advanced.md
Fixes #1925
Diffstat (limited to 'googletest')
-rw-r--r--googletest/docs/advanced.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md
index b8bb5cd..0552480 100644
--- a/googletest/docs/advanced.md
+++ b/googletest/docs/advanced.md
@@ -1487,7 +1487,7 @@ returns the value of `testing::PrintToString(GetParam())`. It does not work for
NOTE: test names must be non-empty, unique, and may only contain ASCII
alphanumeric characters. In particular, they [should not contain
-underscores](https://g3doc.corp.google.com/third_party/googletest/googletest/g3doc/faq.md#no-underscores).
+underscores](https://github.com/google/googletest/blob/master/googletest/docs/faq.md#why-should-test-case-names-and-test-names-not-contain-underscore).
```c++
class MyTestCase : public testing::TestWithParam<int> {};