Skip to content

Commit

Permalink
tests: fix unpackdir tests
Browse files Browse the repository at this point in the history
as styhead is now the latest release

Signed-off-by: Konrad Weihmann <[email protected]>
  • Loading branch information
priv-kweihmann committed Oct 13, 2024
1 parent 91cb49d commit 05e822c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_class_oelint_vars_unpackdir.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_bad_new(self, input_, id_, occurrence):
],
)
def test_bad_old(self, input_, id_, occurrence):
self.check_for_id(self._create_args(input_), id_, occurrence)
self.check_for_id(self._create_args(input_, ['--release=kirkstone']), id_, occurrence)

@pytest.mark.parametrize('id_', ['oelint.vars.unpackdir'])
@pytest.mark.parametrize('occurrence', [0])
Expand All @@ -68,4 +68,4 @@ def test_bad_old(self, input_, id_, occurrence):
],
)
def test_good_inherit(self, input_, id_, occurrence):
self.check_for_id(self._create_args(input_, ['--release=styhead']), id_, occurrence)
self.check_for_id(self._create_args(input_), id_, occurrence)

0 comments on commit 05e822c

Please sign in to comment.