[Bps-public-commit] r16560 - sd/trunk/lib/App/SD

ruz at bestpractical.com ruz at bestpractical.com
Tue Oct 28 12:22:52 EDT 2008


Author: ruz
Date: Tue Oct 28 12:22:51 2008
New Revision: 16560

Modified:
   sd/trunk/lib/App/SD/Test.pm

Log:
* perl 5.8.8 doesn't like undef assignments in %ENV

Modified: sd/trunk/lib/App/SD/Test.pm
==============================================================================
--- sd/trunk/lib/App/SD/Test.pm	(original)
+++ sd/trunk/lib/App/SD/Test.pm	Tue Oct 28 12:22:51 2008
@@ -10,7 +10,7 @@
 use base qw/Exporter/;
 our @EXPORT = qw(create_ticket_ok create_ticket_comment_ok get_uuid_for_luid get_luid_for_uuid);
 $ENV{'SD_CONFIG'} = 't/prophet_testing.conf';
-$ENV{'PROPHET_APP_CONFIG'} = undef;
+delete $ENV{'PROPHET_APP_CONFIG'};
 
 =head2 create_ticket_ok ARGS
 



More information about the Bps-public-commit mailing list