From 89c4898d0c828efc7ac058f2c9ec001b3191ebeb Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Tue, 12 Mar 2019 14:56:27 +0000 Subject: [PATCH] enable sshcollector platform tests --- xt/00-compile.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xt/00-compile.t b/xt/00-compile.t index 307058af..f9e3b606 100644 --- a/xt/00-compile.t +++ b/xt/00-compile.t @@ -21,8 +21,8 @@ use Test::Compile; my $test = Test::Compile->new(); -my @plfiles = grep {$_ !~ m/(?:sshcollector|graph)/i} $test->all_pl_files(); -my @pmfiles = grep {$_ !~ m/(?:sshcollector|graph)/i} $test->all_pm_files(); +my @plfiles = grep {$_ !~ m/(?:graph)/i} $test->all_pl_files(); +my @pmfiles = grep {$_ !~ m/(?:graph)/i} $test->all_pm_files(); $test->ok($test->pl_file_compiles($_), "$_ compiles") for @plfiles; $test->ok($test->pm_file_compiles($_), "$_ compiles") for @pmfiles;