| Index: chrome/test/chromedriver/test/unittest_util.py
|
| diff --git a/chrome/test/chromedriver/test/unittest_util.py b/chrome/test/chromedriver/test/unittest_util.py
|
| index 7c07312cb4a6f0c62f9038e63656e53feb2ca6ac..52363c2a070ea240280126532447e2a3c49fa542 100644
|
| --- a/chrome/test/chromedriver/test/unittest_util.py
|
| +++ b/chrome/test/chromedriver/test/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))
|
| @@ -103,7 +103,7 @@ def FilterTestSuite(suite, gtest_filter):
|
| def FilterTests(all_tests, gtest_filter):
|
| """Returns a filtered list of tests 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.
|
| """
|
| pattern_groups = gtest_filter.split('-')
|
|
|