From ccaf82a249d988a9192034b5afa33b754aefd379 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Fri, 4 Sep 2009 21:08:05 +0000 Subject: Bug 224588: Unify ($^O =~ /MSWin/) checks (always use ON_WINDOWS) Patch by Max Kanat-Alexander r=LpSolit, a=LpSolit --- t/012throwables.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 't/012throwables.t') diff --git a/t/012throwables.t b/t/012throwables.t index b846ab907..4be02c58a 100644 --- a/t/012throwables.t +++ b/t/012throwables.t @@ -28,9 +28,9 @@ ######Errors###### use strict; +use lib qw(. lib t); -use lib 't'; - +use Bugzilla::Constants; use Bugzilla::WebService::Constants; use File::Spec; @@ -60,7 +60,7 @@ foreach my $include_path (@include_paths) { foreach my $path (@{$actual_files{$include_path}}) { my $file = File::Spec->catfile($include_path, $path); $file =~ s/\s.*$//; # nuke everything after the first space - $file =~ s|\\|/|g if $^O eq 'MSWin32'; # convert \ to / in path if on windows + $file =~ s|\\|/|g if ON_WINDOWS; # convert \ to / in path if on windows $test_templates{$file} = () if $file =~ m#global/(code|user)-error\.html\.tmpl#; } -- cgit v1.2.3-24-g4f1b