aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-10-23 17:27:38 -0400
committerGitHub <noreply@github.com>2018-10-23 17:27:38 -0400
commit7b6b3be34241dfa9fdfd53797734bdc18683c50b (patch)
tree628fb56b74b238298bde9f4c5cc6ee7654088c99 /googletest/docs
parent20eaf6e3a9dbefcb1fb91b9a438aaef70cd999cf (diff)
downloadgoogletest-7b6b3be34241dfa9fdfd53797734bdc18683c50b.tar.gz
googletest-7b6b3be34241dfa9fdfd53797734bdc18683c50b.tar.bz2
googletest-7b6b3be34241dfa9fdfd53797734bdc18683c50b.zip
Update advanced.md
Fixes #1802
Diffstat (limited to 'googletest/docs')
-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 b8bb5cd9..05524809 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> {};