diff options
author | lpsolit%gmail.com <> | 2006-04-18 03:49:59 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-04-18 03:49:59 +0000 |
commit | 6ec3903ce315493dc6cc3ded2d9c6c69b0dfc8a2 (patch) | |
tree | d45325e291765d197832b05a673dc997114e2f18 /t | |
parent | I forgot a minor fix on checkin for bug 330718 :) (diff) | |
download | bugzilla-6ec3903ce315493dc6cc3ded2d9c6c69b0dfc8a2.tar.gz bugzilla-6ec3903ce315493dc6cc3ded2d9c6c69b0dfc8a2.tar.bz2 bugzilla-6ec3903ce315493dc6cc3ded2d9c6c69b0dfc8a2.zip |
Bug 333998: 012throwables.t broken on Windows - Patch by Marc Schumann <wurblzap@gmail.com> r=LpSolit a=justdave
Diffstat (limited to 't')
-rw-r--r-- | t/012throwables.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/012throwables.t b/t/012throwables.t index 08e826a08..a055e45d0 100644 --- a/t/012throwables.t +++ b/t/012throwables.t @@ -59,7 +59,7 @@ foreach my $include_path (@include_paths) { $file =~ s/\s.*$//; # nuke everything after the first space $file =~ s|\\|/|g if $^O eq 'MSWin32'; # convert \ to / in path if on windows $test_templates{$file} = () - if $path =~ m#global/(code|user)-error\.html\.tmpl#; + if $file =~ m#global/(code|user)-error\.html\.tmpl#; } } |