Skip to content

Commit

Permalink
Fix linter check, whitespace after :
Browse files Browse the repository at this point in the history
  • Loading branch information
schaefi committed Jul 31, 2023
1 parent 253e645 commit b56a4ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/container/oci_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def test_init_in_buildservice(

m_open = mock_open()
with patch('builtins.open', m_open, create=True):
m_open.return_value.__iter__ = lambda _:\
m_open.return_value.__iter__ = lambda _: \
iter(['BUILD_DISTURL=obs://build.opensuse.org/some:project'])
container = ContainerImageOCI(
'root_dir', 'oci-archive'
Expand All @@ -102,7 +102,7 @@ def test_init_in_buildservice(

m_open = mock_open()
with patch('builtins.open', m_open, create=True):
m_open.return_value.__iter__ = lambda _:\
m_open.return_value.__iter__ = lambda _: \
iter(['BUILD_DISTURL=obs://build.opensuse.org/some:project'])
container = ContainerImageOCI(
'root_dir', 'oci-archive', {'labels': {'label': 'value'}}
Expand Down

0 comments on commit b56a4ca

Please sign in to comment.