diff options
author | dmauro <dmauro@google.com> | 2021-08-09 21:06:31 (GMT) |
---|---|---|
committer | Derek Mauro <dmauro@google.com> | 2021-08-10 16:30:49 (GMT) |
commit | eb7e38dfb4697f3fbd8371e11d0414e7ae3a79c7 (patch) | |
tree | 1b4b6eee3114b1d807c6cd795d809ce04fa8ab8d /googletest/test | |
parent | aefb45469ee7e6bde0cd1d2c18412046c30e7bb6 (diff) | |
download | googletest-eb7e38dfb4697f3fbd8371e11d0414e7ae3a79c7.zip googletest-eb7e38dfb4697f3fbd8371e11d0414e7ae3a79c7.tar.gz googletest-eb7e38dfb4697f3fbd8371e11d0414e7ae3a79c7.tar.bz2 |
Googletest export
Fix a Python 2 to 3 issue
PiperOrigin-RevId: 389720056
Diffstat (limited to 'googletest/test')
-rwxr-xr-x | googletest/test/gtest_test_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/test/gtest_test_utils.py b/googletest/test/gtest_test_utils.py index d0c2446..c7f25aa 100755 --- a/googletest/test/gtest_test_utils.py +++ b/googletest/test/gtest_test_utils.py @@ -173,7 +173,7 @@ def GetTestExecutablePath(executable_name, build_dir=None): 'Unable to find the test binary "%s". Please make sure to provide\n' 'a path to the binary via the --build_dir flag or the BUILD_DIR\n' 'environment variable.' % path) - print >> sys.stderr, message + print(message, file=sys.stderr) sys.exit(1) return path |