Skip to content

Commit 3ecda8b

Browse files
committed
Merge pull request #322 from GoogleCloudPlatform/fixdataproc
Fix Dataproc e2e for Python 3
2 parents adde118 + e68d0b2 commit 3ecda8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dataproc/dataproc_e2e_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
def test_e2e(cloud_config):
2828
output = create_cluster_and_submit_job.main(
2929
cloud_config.project, ZONE, CLUSTER_NAME, cloud_config.storage_bucket)
30-
assert "['Hello,', 'dog', 'elephant', 'panther', 'world!']" in output
30+
assert b"['Hello,', 'dog', 'elephant', 'panther', 'world!']" in output

0 commit comments

Comments
 (0)