diff options
author | Daniel Friesel <derf@finalrewind.org> | 2010-11-19 17:06:17 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2010-11-19 17:06:17 +0100 |
commit | 3ed204b663c7ae66f2e010215af7635493436025 (patch) | |
tree | 9e524a698103df66056966764e629efaacaf05ba /t/50-icli.t | |
parent | a792783089e717a243ebdd9b96a2ad79981f642b (diff) |
icli.t: Disable qw warnings
Diffstat (limited to 't/50-icli.t')
-rw-r--r-- | t/50-icli.t | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/50-icli.t b/t/50-icli.t index 6b3129a..e9763df 100644 --- a/t/50-icli.t +++ b/t/50-icli.t @@ -3,6 +3,9 @@ use strict; use warnings; use 5.010; +# We need commas in our qw list, they're not accidental +no warnings 'qw'; + use Test::Command tests => (36*3); my $icli = 'bin/icli -f t/in/status.dat -c t/in/objects.cache'; |