[Rt-commit] rtir branch, 2.6-trunk, updated. 2.6.0-28-g17c44a5
Thomas Sibley
trs at bestpractical.com
Mon Jul 25 15:48:25 EDT 2011
The branch, 2.6-trunk has been updated
via 17c44a5716706baaa524b965d1b13d64ca6dcb22 (commit)
from 3ea504f34936956e0254b888c31650a46cac160b (commit)
Summary of changes:
lib/RT/IR/Test.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit 17c44a5716706baaa524b965d1b13d64ca6dcb22
Author: Thomas Sibley <trs at bestpractical.com>
Date: Mon Jul 25 15:48:03 2011 -0400
Explicitly initialize local'd variables
diff --git a/lib/RT/IR/Test.pm b/lib/RT/IR/Test.pm
index 3a93ef8..2dc35fe 100644
--- a/lib/RT/IR/Test.pm
+++ b/lib/RT/IR/Test.pm
@@ -8,7 +8,7 @@ package RT::IR::Test;
our @ISA;
BEGIN {
- local $@;
+ local $@ = undef;
eval { require RT::Test; 1 } or do {
require Test::More;
Test::More::BAIL_OUT(
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list