mirror of
https://github.com/apache/superset.git
synced 2026-05-12 03:15:55 +00:00
chore: upgrade black (#19410)
This commit is contained in:
committed by
Ville Brofeldt
parent
1edd5f1343
commit
a70f4dc52f
@@ -366,7 +366,9 @@ def test_import_datasets_sync_argument_columns_metrics(
|
||||
assert response.exit_code == 0
|
||||
expected_contents = {"dataset.yaml": "hello: world"}
|
||||
import_datasets_command.assert_called_with(
|
||||
expected_contents, sync_columns=True, sync_metrics=True,
|
||||
expected_contents,
|
||||
sync_columns=True,
|
||||
sync_metrics=True,
|
||||
)
|
||||
|
||||
|
||||
@@ -401,7 +403,9 @@ def test_import_datasets_sync_argument_columns(
|
||||
assert response.exit_code == 0
|
||||
expected_contents = {"dataset.yaml": "hello: world"}
|
||||
import_datasets_command.assert_called_with(
|
||||
expected_contents, sync_columns=True, sync_metrics=False,
|
||||
expected_contents,
|
||||
sync_columns=True,
|
||||
sync_metrics=False,
|
||||
)
|
||||
|
||||
|
||||
@@ -436,7 +440,9 @@ def test_import_datasets_sync_argument_metrics(
|
||||
assert response.exit_code == 0
|
||||
expected_contents = {"dataset.yaml": "hello: world"}
|
||||
import_datasets_command.assert_called_with(
|
||||
expected_contents, sync_columns=False, sync_metrics=True,
|
||||
expected_contents,
|
||||
sync_columns=False,
|
||||
sync_metrics=True,
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user