From ad7f0784d0cc057e0826ff6a6a1142067f8e3da5 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 27 Sep 2018 11:29:23 +0100 Subject: [PATCH] libvirt.pm: Drop some unneeded parens (no functional change0 Signed-off-by: Ian Jackson --- Osstest/Toolstack/libvirt.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Osstest/Toolstack/libvirt.pm b/Osstest/Toolstack/libvirt.pm index 7ebeaf6..e817f5b 100644 --- a/Osstest/Toolstack/libvirt.pm +++ b/Osstest/Toolstack/libvirt.pm @@ -30,8 +30,8 @@ sub new { my $nl_lib = "libnl-3-200"; my $libgnutls = "libgnutls30"; - $nl_lib = "libnl1" if ($ho->{Suite} =~ m/wheezy/); - $libgnutls = "libgnutls-deb0-28" if ($ho->{Suite} =~ m/jessie/); + $nl_lib = "libnl1" if $ho->{Suite} =~ m/wheezy/; + $libgnutls = "libgnutls-deb0-28" if $ho->{Suite} =~ m/jessie/; push(@extra_packages, $nl_lib); push(@extra_packages, $libgnutls); return bless { Name => "libvirt", -- 2.39.5