[Rt-commit] r9519 - in rt/branches/3.999-DANGEROUS: lib/RT

sartak at bestpractical.com sartak at bestpractical.com
Wed Oct 31 15:33:55 EDT 2007


Author: sartak
Date: Wed Oct 31 15:33:52 2007
New Revision: 9519

Modified:
   rt/branches/3.999-DANGEROUS/   (props changed)
   rt/branches/3.999-DANGEROUS/lib/RT/Test.pm

Log:
 r44458 at onn:  sartak | 2007-10-31 15:33:29 -0400
 Load the RT config *after* the Jifty config so we get the test config correctly


Modified: rt/branches/3.999-DANGEROUS/lib/RT/Test.pm
==============================================================================
--- rt/branches/3.999-DANGEROUS/lib/RT/Test.pm	(original)
+++ rt/branches/3.999-DANGEROUS/lib/RT/Test.pm	Wed Oct 31 15:33:52 2007
@@ -15,8 +15,8 @@
 sub import {
     my $class = shift;
     my %args = @_;
-    $class->_setup_config(%args);
     $class->SUPER::import(@_);
+    $class->_setup_config(%args);
     RT::InitSystemObjects();
 }
 


More information about the Rt-commit mailing list