Tests: Tweaked two tests to be compatible with Boto 2.7, now-removed kwarg has its own version-gated test.

This commit is contained in:
Shawn Falkner-Horine 2014-09-10 13:02:55 -07:00
parent 61d93bfcfc
commit fd42d19f0e

View File

@ -99,7 +99,6 @@ def test_create_job_flow_visible_to_all_users():
job_id = conn.run_jobflow( job_id = conn.run_jobflow(
name='My jobflow', name='My jobflow',
log_uri='s3://some_bucket/jobflow_logs', log_uri='s3://some_bucket/jobflow_logs',
job_flow_role='some-role-arn',
steps=[], steps=[],
visible_to_all_users=True, visible_to_all_users=True,
) )
@ -275,7 +274,6 @@ def test_set_visible_to_all_users():
job_id = conn.run_jobflow( job_id = conn.run_jobflow(
name='My jobflow', name='My jobflow',
log_uri='s3://some_bucket/jobflow_logs', log_uri='s3://some_bucket/jobflow_logs',
job_flow_role='some-role-arn',
steps=[], steps=[],
visible_to_all_users=False, visible_to_all_users=False,
) )