diff options
author | Thomas Amland <thomas.amland@gmail.com> | 2016-01-19 13:31:01 (GMT) |
---|---|---|
committer | Thomas Amland <thomas.amland@gmail.com> | 2016-01-19 13:41:20 (GMT) |
commit | d404af0d987a9c38cafce82a7e26ec8468c88361 (patch) | |
tree | db383749df456c1019b514982213f3fc12ab9008 /googletest/test/gtest_uninitialized_test.py | |
parent | 13206d6f53aaff844f2d3595a01ac83a29e383db (diff) | |
download | googletest-d404af0d987a9c38cafce82a7e26ec8468c88361.zip googletest-d404af0d987a9c38cafce82a7e26ec8468c88361.tar.gz googletest-d404af0d987a9c38cafce82a7e26ec8468c88361.tar.bz2 |
add python 3 support to tests
Diffstat (limited to 'googletest/test/gtest_uninitialized_test.py')
-rwxr-xr-x | googletest/test/gtest_uninitialized_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/test/gtest_uninitialized_test.py b/googletest/test/gtest_uninitialized_test.py index 6ae57ee..4358370 100755 --- a/googletest/test/gtest_uninitialized_test.py +++ b/googletest/test/gtest_uninitialized_test.py @@ -46,8 +46,8 @@ def Assert(condition): def AssertEq(expected, actual): if expected != actual: - print 'Expected: %s' % (expected,) - print ' Actual: %s' % (actual,) + print('Expected: %s' % (expected,)) + print(' Actual: %s' % (actual,)) raise AssertionError |