Skip to content

Commit

Permalink
Issue #444: explicitly specify 'use strict;'
Browse files Browse the repository at this point in the history
Even though strictness is already enforced by 'use v5.24.0'
  • Loading branch information
bschmalhofer committed Sep 19, 2020
1 parent 3305ad5 commit 5538476
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/test/Compile.t
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
# This test script does not work with Kernel::System::UnitTest::Driver.
# __SKIP_BY_KERNEL_SYSTEM_UNITTEST_DRIVER__

use v5.24.0;
use strict;
use warnings;
use v5.24.0;
use utf8;

# core modules
Expand All @@ -26,6 +27,8 @@ use utf8;
use Test2::V0;
use Test::Compile::Internal;

# OTOBO modules

my $Internal = Test::Compile::Internal->new;
my @Dirs = qw(Kernel Custom scripts bin);

Expand Down

0 comments on commit 5538476

Please sign in to comment.