FortressTestCase: Context initialization bug
---------------------------------------------
Key: FORTRESS-23
URL: https://issues.apache.org/jira/browse/FORTRESS-23
Project: Excalibur Fortress
Issue Type: Bug
Components: Implementation
Affects Versions: 1.2
Environment: Windows XP, java SE 1.5.
Reporter: Alonso Dominguez
FortressTestCase ignores the context returned from the method
"initializeContext" at line 145. This is a piece of code:
Context context = initializeContext( config.getContext() );
m_containerManager = new DefaultContainerManager( config.getContext() );
ContainerUtil.initialize( m_containerManager );
So, the context returned from initializeContext is never used. This should be
changed to
Context context = initializeContext( config.getContext() );
m_containerManager = new DefaultContainerManager( context );
ContainerUtil.initialize( m_containerManager );
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]