Skip to content

Commit

Permalink
Fix typos from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Alexei Mochalov <[email protected]>
  • Loading branch information
drernie and nl0 authored Nov 21, 2024
1 parent 6cf089e commit 541ef1f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/python/tests/integration/test_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def test_fetch_default_dest(tmpdir):
copy_mock.assert_called_once_with(
PhysicalKey.from_path(filepath),
PhysicalKey.from_path('foo.txt'),
put_options=None
put_options=None,
)

@patch('quilt3.workflows.validate', mock.MagicMock(return_value=None))
Expand Down
4 changes: 3 additions & 1 deletion api/python/tests/test_bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ def test_bucket_put_file(self):

copy_mock.assert_called_once_with(
PhysicalKey.from_path('README'),
PhysicalKey.from_url('s3://test-bucket/README.md'), put_options=opts)
PhysicalKey.from_url('s3://test-bucket/README.md'),
put_options=opts,
)

def test_bucket_put_dir(self):
path = pathlib.Path(__file__).parent / 'data'
Expand Down

0 comments on commit 541ef1f

Please sign in to comment.