Skip to content

Commit

Permalink
manual fmt fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilo59 committed Feb 26, 2024
1 parent 5174f64 commit 36edb35
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion tests/data_context/test_get_data_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def test_cloud_missing_env_throws_exception(
clear_env_vars, empty_ge_cloud_data_context_config
):
with pytest.raises(GXCloudConfigurationError):
(gx.get_context(cloud_mode=True),)
gx.get_context(cloud_mode=True)


@pytest.mark.parametrize("params", [GX_CLOUD_PARAMS_REQUIRED, GX_CLOUD_PARAMS_ALL])
Expand Down
22 changes: 9 additions & 13 deletions tests/datasource/fluent/_fake_cloud_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -860,19 +860,15 @@ def gx_cloud_api_fake_ctx(
f"{org_url_base}/expectation-suites/{FAKE_EXPECTATION_SUITE_ID}",
get_expectation_suite_by_id_cb,
)
(
resp_mocker.add_callback(
responses.POST,
f"{org_url_base}/expectation-suites",
post_expectation_suites_cb,
),
)
(
resp_mocker.add_callback(
responses.PUT,
f"{org_url_base}/expectation-suites/{FAKE_EXPECTATION_SUITE_ID}",
put_expectation_suites_cb,
),
resp_mocker.add_callback(
responses.POST,
f"{org_url_base}/expectation-suites",
post_expectation_suites_cb,
)
resp_mocker.add_callback(
responses.PUT,
f"{org_url_base}/expectation-suites/{FAKE_EXPECTATION_SUITE_ID}",
put_expectation_suites_cb,
)
resp_mocker.add_callback(
responses.DELETE,
Expand Down

0 comments on commit 36edb35

Please sign in to comment.