Skip to content

Commit

Permalink
CI: Fix Ubuntu 24.04 version check
Browse files Browse the repository at this point in the history
Change-Id: I5165ab758d2a7040d22b139813f0dce45fa0d59e
(cherry picked from commit 2fb57a7)
  • Loading branch information
priteau committed Oct 31, 2024
1 parent 77c1ad1 commit 3c1ff0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _is_dnf_mirror():
def _is_ubuntu_noble():
name = distro.name()
version = distro.version()
return name == 'Ubuntu' and version == 24.04
return name == 'Ubuntu' and version == '24.04'


def test_network_ethernet(host):
Expand Down

0 comments on commit 3c1ff0c

Please # to comment.