I started to dig into the JUnit tests that are failing, starting with
WikiEngineTest.
I noticed that many tests fail because the pageName returned is prepended
with "Main:".
For example:

*assertEquals( "plural mistake", "Foobars", m_engine.getFinalPageName(
WikiName.valueOf("Foobars") ) );*

The test can be changed to make it succeed by changing it to :

*assertEquals( "plural mistake", "Main:Foobars", m_engine.getFinalPageName(
WikiName.valueOf( "Foobars" ) ).toString() );*

Is that the correct fix ?

Harry

Reply via email to