aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/test/gmock_output_test.py
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2019-07-17 12:56:41 -0400
committerGennadiy Civil <misterg@google.com>2019-07-17 13:38:25 -0400
commit0ef404e2e7ae9b6adea1c80b37182f49a25b6523 (patch)
tree3e5f2156c905c0b7fa5cf5be882cd48baeaf6a5a /googlemock/test/gmock_output_test.py
parent6077f444da944d96d311d358d761164261f1cdd0 (diff)
downloadgoogletest-0ef404e2e7ae9b6adea1c80b37182f49a25b6523.tar.gz
googletest-0ef404e2e7ae9b6adea1c80b37182f49a25b6523.tar.bz2
googletest-0ef404e2e7ae9b6adea1c80b37182f49a25b6523.zip
Googletest export
Internal change PiperOrigin-RevId: 258587862
Diffstat (limited to 'googlemock/test/gmock_output_test.py')
-rwxr-xr-xgooglemock/test/gmock_output_test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/googlemock/test/gmock_output_test.py b/googlemock/test/gmock_output_test.py
index 0527bd93..25f99f2b 100755
--- a/googlemock/test/gmock_output_test.py
+++ b/googlemock/test/gmock_output_test.py
@@ -39,6 +39,7 @@ gmock_output_test.py
"""
+from io import open # pylint: disable=redefined-builtin, g-importing-member
import os
import re
import sys
@@ -152,10 +153,11 @@ def GetNormalizedCommandOutputAndLeakyTests(cmd):
class GMockOutputTest(gmock_test_utils.TestCase):
+
def testOutput(self):
(output, leaky_tests) = GetNormalizedCommandOutputAndLeakyTests(COMMAND)
golden_file = open(GOLDEN_PATH, 'rb')
- golden = golden_file.read()
+ golden = golden_file.read().decode('utf-8')
golden_file.close()
# The normalized output should match the golden file.