summaryrefslogtreecommitdiff
path: root/wotonomy-web-test/src/main/java/OtherAction.java
diff options
context:
space:
mode:
authorBenjamin Culkin <scorpress@gmail.com>2024-05-21 17:52:46 -0400
committerBenjamin Culkin <scorpress@gmail.com>2024-05-21 17:52:46 -0400
commit3403adc8ac690439605072f9c4dc30995abac99f (patch)
treebf039d2cab23157aeb8721328cfb4845bc7b7958 /wotonomy-web-test/src/main/java/OtherAction.java
parent8283e417245b26abd290f7e6fd0511869802fc82 (diff)
More work on getting a working example
Took a little bit, but I fixed the bindings and found the place where they are supposed to be
Diffstat (limited to 'wotonomy-web-test/src/main/java/OtherAction.java')
-rw-r--r--wotonomy-web-test/src/main/java/OtherAction.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/wotonomy-web-test/src/main/java/OtherAction.java b/wotonomy-web-test/src/main/java/OtherAction.java
index 00a3155..95e840a 100644
--- a/wotonomy-web-test/src/main/java/OtherAction.java
+++ b/wotonomy-web-test/src/main/java/OtherAction.java
@@ -13,7 +13,7 @@ public class OtherAction extends WODirectAction {
public WOActionResults linkTestAction() {
System.out.println("creating and configuring Main.wo");
WOComponent page = pageWithName("Main");
- page.takeValueForKey(new Boolean(false), "showTime");
+ page.takeValueForKey(false, "showTime");
page.takeValueForKey("direct action called", "textValue");
return page;
}