2
2
3
3
import pytest
4
4
from localstack_snapshot .snapshots .transformer import GenericTransformer , RegexTransformer
5
- from localstack .testing .aws .util import is_aws_cloud
6
5
7
6
from localstack .aws .api .lambda_ import Runtime
7
+ from localstack .testing .aws .util import is_aws_cloud
8
8
from localstack .testing .pytest import markers
9
9
from localstack .testing .pytest .stepfunctions .utils import create_and_record_execution
10
10
from localstack .utils .strings import short_uid
@@ -88,11 +88,15 @@ def test_reference_assign(
88
88
AT .load_sfn_template (AT .BASE_UNDEFINED_ASSIGN ),
89
89
pytest .param (
90
90
AT .load_sfn_template (AT .BASE_UNDEFINED_ARGUMENTS ),
91
- marks = pytest .mark .skipif (condition = not is_aws_cloud (), reason = "Not reached full parity yet." ),
91
+ marks = pytest .mark .skipif (
92
+ condition = not is_aws_cloud (), reason = "Not reached full parity yet."
93
+ ),
92
94
),
93
95
pytest .param (
94
96
AT .load_sfn_template (AT .BASE_UNDEFINED_ARGUMENTS_FIELD ),
95
- marks = pytest .mark .skipif (condition = not is_aws_cloud (),reason = "Not reached full parity yet." ),
97
+ marks = pytest .mark .skipif (
98
+ condition = not is_aws_cloud (), reason = "Not reached full parity yet."
99
+ ),
96
100
),
97
101
],
98
102
ids = [
@@ -104,7 +108,6 @@ def test_reference_assign(
104
108
"BASE_UNDEFINED_ARGUMENTS_FIELD" ,
105
109
],
106
110
)
107
-
108
111
@markers .aws .validated
109
112
def test_undefined_reference (
110
113
self ,
0 commit comments