Index: build/util/lib/common/unittest_util.py |
diff --git a/build/util/lib/common/unittest_util.py b/build/util/lib/common/unittest_util.py |
index a4fa8aef4bd3c9dd19d04e40d747fff316fdc603..010252b28eb79b3a501b9b03c35b51df1feee4d1 100644 |
--- a/build/util/lib/common/unittest_util.py |
+++ b/build/util/lib/common/unittest_util.py |
@@ -94,7 +94,7 @@ def GetTestName(test): |
def FilterTestSuite(suite, gtest_filter): |
"""Returns a new filtered tests suite based on the given gtest filter. |
- See http://code.google.com/p/googletest/wiki/AdvancedGuide |
+ See https://github.com/google/googletest/blob/master/googletest/docs/AdvancedGuide.md |
for gtest_filter specification. |
""" |
return unittest.TestSuite(FilterTests(GetTestsFromSuite(suite), gtest_filter)) |
@@ -118,7 +118,7 @@ def FilterTests(all_tests, gtest_filter): |
def FilterTestNames(all_tests, gtest_filter): |
"""Filter a list of test names based on the given gtest filter. |
- See http://code.google.com/p/googletest/wiki/AdvancedGuide |
+ See https://github.com/google/googletest/blob/master/googletest/docs/AdvancedGuide.md |
for gtest_filter specification. |
Args: |