aboutsummaryrefslogtreecommitdiff
path: root/googletest/test/gtest_throw_on_failure_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'googletest/test/gtest_throw_on_failure_test.py')
-rwxr-xr-xgoogletest/test/gtest_throw_on_failure_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/test/gtest_throw_on_failure_test.py b/googletest/test/gtest_throw_on_failure_test.py
index 5678ffea..3e7740ca 100755
--- a/googletest/test/gtest_throw_on_failure_test.py
+++ b/googletest/test/gtest_throw_on_failure_test.py
@@ -70,7 +70,7 @@ def SetEnvVar(env_var, value):
def Run(command):
"""Runs a command; returns True/False if its exit code is/isn't 0."""
- print 'Running "%s". . .' % ' '.join(command)
+ print('Running "%s". . .' % ' '.join(command))
p = gtest_test_utils.Subprocess(command)
return p.exited and p.exit_code == 0