Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Commit

Permalink
Fixed pycodestyle error
Browse files Browse the repository at this point in the history
  • Loading branch information
Forchapeatl authored Dec 7, 2023
1 parent e5876dd commit fac1274
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/data/test_aws_s3_data_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test_create(self, properties):
assert aws_s3_object_dn.is_ready_for_reading

@mock_s3
@pytest.mark.parametrize('data', [('Hello, write world!'),])
@pytest.mark.parametrize('data', [('Hello, write world!'), ])
@pytest.mark.parametrize("properties", __properties)
def test_write(self, properties, data):
bucket_name = properties["aws_s3_bucket_name"]
Expand All @@ -73,7 +73,7 @@ def test_write(self, properties, data):
assert response['Body'].read().decode('utf-8') == "Hello, write world!"

@mock_s3
@pytest.mark.parametrize('data', [('Hello, read world!'),])
@pytest.mark.parametrize('data', [('Hello, read world!'), ])
@pytest.mark.parametrize("properties", __properties)
def test_read(self, properties, data):
bucket_name = properties["aws_s3_bucket_name"]
Expand Down

0 comments on commit fac1274

Please sign in to comment.