Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,9 +619,7 @@ def write_version(filename: str = os.path.join(*[my_dir, "airflow", "git_version
'jira',
'jsondiff',
'mongomock',
# Moto3 is limited for unknown reason
# TODO: attempt to remove the limitation
'moto~=2.2,>=2.2.12',
'moto>=3.0.3',
'parameterized',
'paramiko',
'pipdeptree',
Expand Down
2 changes: 1 addition & 1 deletion tests/providers/amazon/aws/hooks/test_kinesis.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_insert_batch_records_kinesis_firehose(self):
)

stream_arn = response['DeliveryStreamARN']
assert stream_arn == "arn:aws:firehose:us-east-1:123456789012:/delivery_stream/test_airflow"
assert stream_arn == "arn:aws:firehose:us-east-1:123456789012:deliverystream/test_airflow"

records = [{"Data": str(uuid.uuid4())} for _ in range(100)]

Expand Down