Author: metskem
Date: Wed Apr 18 18:22:20 2012
New Revision: 1327607
URL: http://svn.apache.org/viewvc?rev=1327607&view=rev
Log:
2012-04-18 Harry Metske <[email protected]>
* 2.8.5-svn-13
* fixed JSPWIKI-726 drop the 2 case-sensitive tests in
WikiEngineTest.testSpacedNames1
Modified:
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/Release.java
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/tests/com/ecyrd/jspwiki/WikiEngineTest.java
Modified: incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog?rev=1327607&r1=1327606&r2=1327607&view=diff
==============================================================================
--- incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog (original)
+++ incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/ChangeLog Wed Apr 18 18:22:20
2012
@@ -1,3 +1,9 @@
+2012-04-18 Harry Metske <[email protected]>
+
+ * 2.8.5-svn-13
+
+ * fixed JSPWIKI-726 drop the 2 case-sensitive tests in
WikiEngineTest.testSpacedNames1
+
2012-04-14 Harry Metske <[email protected]>
* 2.8.5-svn-12
Modified:
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/Release.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/Release.java?rev=1327607&r1=1327606&r2=1327607&view=diff
==============================================================================
---
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/Release.java
(original)
+++
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/src/com/ecyrd/jspwiki/Release.java
Wed Apr 18 18:22:20 2012
@@ -77,7 +77,7 @@ public final class Release
* <p>
* If the build identifier is empty, it is not added.
*/
- public static final String BUILD = "12";
+ public static final String BUILD = "13";
/**
* This is the generic version string you should use
Modified:
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/tests/com/ecyrd/jspwiki/WikiEngineTest.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/tests/com/ecyrd/jspwiki/WikiEngineTest.java?rev=1327607&r1=1327606&r2=1327607&view=diff
==============================================================================
---
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/tests/com/ecyrd/jspwiki/WikiEngineTest.java
(original)
+++
incubator/jspwiki/branches/JSPWIKI_2_8_BRANCH/tests/com/ecyrd/jspwiki/WikiEngineTest.java
Wed Apr 18 18:22:20 2012
@@ -862,8 +862,6 @@ public class WikiEngineTest extends Test
m_engine.saveText("This is a test", "puppaa");
assertEquals( "normal", "puppaa", m_engine.getText("This is a
test").trim() );
- assertEquals( "lowercase", "puppaa", m_engine.getText("this is a
test").trim() );
- assertEquals( "randomcase", "puppaa", m_engine.getText("ThiS Is a
teSt").trim() );
}