[jboss-cvs] jboss-seam/examples/wiki/src/test/org/jboss/seam/wiki/test/documents ...
Christian Bauer
christian at hibernate.org
Wed Apr 18 11:34:30 EDT 2007
User: cbauer
Date: 07/04/18 11:34:30
Modified: examples/wiki/src/test/org/jboss/seam/wiki/test/documents
DocumentDisplay.java
Log:
Disabled broken stuff (RichFaces trees, arithmetic EL) and finished comments plugin
Revision Changes Path
1.2 +2 -2 jboss-seam/examples/wiki/src/test/org/jboss/seam/wiki/test/documents/DocumentDisplay.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: DocumentDisplay.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/src/test/org/jboss/seam/wiki/test/documents/DocumentDisplay.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- DocumentDisplay.java 8 Mar 2007 10:44:15 -0000 1.1
+++ DocumentDisplay.java 18 Apr 2007 15:34:30 -0000 1.2
@@ -12,14 +12,14 @@
new NonFacesRequest("/docDisplay.xhtml") {
protected void beforeRequest() {
- setParameter("nodeId", "5");
+ setParameter("nodeId", "10");
}
protected void renderResponse() throws Exception {
Document doc = (Document)getValue("#{currentDocument}");
assert doc != null;
- assert doc.getId().equals(5l);
+ assert doc.getId().equals(10l);
}
}.run();
More information about the jboss-cvs-commits
mailing list