Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
eb7e38df
Commit
eb7e38df
authored
Aug 09, 2021
by
dmauro
Committed by
Derek Mauro
Aug 10, 2021
Browse files
Googletest export
Fix a Python 2 to 3 issue PiperOrigin-RevId: 389720056
parent
aefb4546
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
googletest/test/gtest_test_utils.py
googletest/test/gtest_test_utils.py
+1
-1
No files found.
googletest/test/gtest_test_utils.py
View file @
eb7e38df
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment