Skip to content

Commit

Permalink
fixup! transitionsystemdservicesstates: Do not handle libvirt and vir…
Browse files Browse the repository at this point in the history
…t* services 8->9+
  • Loading branch information
matejmatuska committed Feb 7, 2024
1 parent fc6f4b8 commit 74e7ebc
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,15 +243,16 @@ def test_report_newly_enabled(monkeypatch):

@pytest.mark.parametrize(
"source_major_ver,expected", (
(7, {
(7,
{
'abc.service': 'enabled',
'virtqemud.service': 'enabled',
'virtlogd.service': 'disabled',
'virtproxyd.service': 'masked',
}
),
(8, { 'abc.service': 'enabled', }),
(9, { 'abc.service': 'enabled', }),
(8, {'abc.service': 'enabled'}),
(9, {'abc.service': 'enabled'}),
)
)
def test_filter_ignored_services(monkeypatch, source_major_ver, expected):
Expand Down

0 comments on commit 74e7ebc

Please sign in to comment.