=
=
=
=
=
=
=
=
======================================================================
--- incubator/jspwiki/trunk/tests/java/org/apache/wiki/parser/ JSPWikiMarkupParserTest.java (original) +++ incubator/jspwiki/trunk/tests/java/org/apache/wiki/parser/ JSPWikiMarkupParserTest.java Sat Oct 17 22:49:04 2009
@@ -2327,7 +2327,14 @@
    {
        Benchmark sw = new Benchmark();
        sw.start();
+
+        // Create the page and save it to disk.
+        if ( !testEngine.pageExists( PAGE_NAME ) )
+        {
+            testEngine.saveText( PAGE_NAME, brokenPageText );
+        }

+        // Test the rendering speed

Not sure whether this is the right fix - I mean, saveText() should actually check for this itself, and in fact, it should save a new version of the page whenever it's called - NOT create a new SNS. Yes, it fixes the test, but I have a feeling that it only hides a real bug.

/Janne

Reply via email to