dougm 02/05/14 16:42:07
Modified: perl-framework/Apache-Test/lib/Apache TestConfig.pm
Log:
bless thawed config object int Apache::TestConfig class
Revision Changes Path
1.132 +3 -0
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm
Index: TestConfig.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -r1.131 -r1.132
--- TestConfig.pm 14 May 2002 21:53:51 -0000 1.131
+++ TestConfig.pm 14 May 2002 23:42:07 -0000 1.132
@@ -142,6 +142,9 @@
require "$_/apache_test_config.pm";
$thaw = 'apache_test_config'->new;
delete $thaw->{save};
+ #incase class that generated the config was
+ #something else, which we can't be sure how to load
+ bless $thaw, 'Apache::TestConfig';
};
};