diff options
author | justdave%bugzilla.org <> | 2005-08-06 06:47:26 +0000 |
---|---|---|
committer | justdave%bugzilla.org <> | 2005-08-06 06:47:26 +0000 |
commit | 51f0717b4285af69f22b635751b6f4a62d1f7da8 (patch) | |
tree | e8d106b301f6ffe06cbec9e521e040e721e2da83 /t | |
parent | Bug 301261: uninitialized value in Search.pm when querying by date - Patch by... (diff) | |
download | bugzilla-51f0717b4285af69f22b635751b6f4a62d1f7da8.tar.gz bugzilla-51f0717b4285af69f22b635751b6f4a62d1f7da8.tar.bz2 bugzilla-51f0717b4285af69f22b635751b6f4a62d1f7da8.zip |
Bug 285700: bump minimum File::Spec version to 0.84 to deal with taint errors
r= LpSolit, a= justdave
Diffstat (limited to 't')
-rw-r--r-- | t/004template.t | 2 | ||||
-rw-r--r-- | t/005no_tabs.t | 2 | ||||
-rw-r--r-- | t/008filter.t | 2 | ||||
-rw-r--r-- | t/009bugwords.t | 2 | ||||
-rw-r--r-- | t/Support/Templates.pm | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/t/004template.t b/t/004template.t index 7f83c8702..4edb6a3ac 100644 --- a/t/004template.t +++ b/t/004template.t @@ -36,7 +36,7 @@ use Support::Templates; # Bug 137589 - Disable command-line input of CGI.pm when testing use CGI qw(-no_debug); -use File::Spec 0.82; +use File::Spec; use Template; use Test::More tests => ( scalar(@referenced_files) * scalar(@languages) + $num_actual_files * 2 ); diff --git a/t/005no_tabs.t b/t/005no_tabs.t index 51433fe13..75f532956 100644 --- a/t/005no_tabs.t +++ b/t/005no_tabs.t @@ -32,7 +32,7 @@ use lib 't'; use Support::Files; use Support::Templates; -use File::Spec 0.82; +use File::Spec; use Test::More tests => ( scalar(@Support::Files::testitems) + $Support::Templates::num_actual_files); diff --git a/t/008filter.t b/t/008filter.t index adbbf9e9b..59d3a2bd7 100644 --- a/t/008filter.t +++ b/t/008filter.t @@ -35,7 +35,7 @@ use lib 't'; use vars qw(%safe); use Support::Templates; -use File::Spec 0.82; +use File::Spec; use Test::More tests => $Support::Templates::num_actual_files; use Cwd; diff --git a/t/009bugwords.t b/t/009bugwords.t index b6cc73699..9249ba4ac 100644 --- a/t/009bugwords.t +++ b/t/009bugwords.t @@ -38,7 +38,7 @@ use Support::Files; use Support::Templates; use Bugzilla::Util; -use File::Spec 0.82; +use File::Spec; use Test::More tests => ($Support::Templates::num_actual_files); diff --git a/t/Support/Templates.pm b/t/Support/Templates.pm index 440358015..6848cf178 100644 --- a/t/Support/Templates.pm +++ b/t/Support/Templates.pm @@ -37,7 +37,7 @@ use vars qw(@languages @include_paths %include_path @referenced_files use Support::Files; use File::Find; -use File::Spec 0.82; +use File::Spec; # The available template languages @languages = (); |