diff options
author | Derek Mauro <dmauro@google.com> | 2021-12-22 21:00:44 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2021-12-22 21:01:24 (GMT) |
commit | c58f562fa2b287ab58a51b702f3c7295efe89904 (patch) | |
tree | 1179004595ed2b972b83dc62ec5adb467c5f7dd9 /googletest/test/googletest-list-tests-unittest.py | |
parent | 71d4e2f7423274d178b446e94b88082559f2fa7a (diff) | |
download | googletest-c58f562fa2b287ab58a51b702f3c7295efe89904.zip googletest-c58f562fa2b287ab58a51b702f3c7295efe89904.tar.gz googletest-c58f562fa2b287ab58a51b702f3c7295efe89904.tar.bz2 |
Makes the Python imports consistently use full paths from the repository root,
unifying the behavior between Bazel and CMake
This fixes one of the CI failures on Windows
PiperOrigin-RevId: 417872531
Change-Id: I156989323b7e6d4a4420f4f9691b078829db933d
Diffstat (limited to 'googletest/test/googletest-list-tests-unittest.py')
-rwxr-xr-x | googletest/test/googletest-list-tests-unittest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/test/googletest-list-tests-unittest.py b/googletest/test/googletest-list-tests-unittest.py index 81423a3..9d56883 100755 --- a/googletest/test/googletest-list-tests-unittest.py +++ b/googletest/test/googletest-list-tests-unittest.py @@ -38,7 +38,7 @@ Google Test) the command line flags. """ import re -import gtest_test_utils +from googletest.test import gtest_test_utils # Constants. |