This is an automated email from the ASF dual-hosted git repository.
papegaaij pushed a commit to branch csp
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/csp by this push:
new 88a341e WICKET-6731: fixed tests
88a341e is described below
commit 88a341ecb371d01f46239c97502720df07e738f7
Author: Emond Papegaaij <[email protected]>
AuthorDate: Fri Jan 24 15:49:37 2020 +0100
WICKET-6731: fixed tests
---
.../wicket/markup/html/form/validation/HomePage1_ExpectedResult.html | 2 +-
.../src/test/java/org/apache/wicket/stateless/StatelessFormUrlTest.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/wicket-core/src/test/java/org/apache/wicket/markup/html/form/validation/HomePage1_ExpectedResult.html
b/wicket-core/src/test/java/org/apache/wicket/markup/html/form/validation/HomePage1_ExpectedResult.html
index eb9e737..9f0e997 100644
---
a/wicket-core/src/test/java/org/apache/wicket/markup/html/form/validation/HomePage1_ExpectedResult.html
+++
b/wicket-core/src/test/java/org/apache/wicket/markup/html/form/validation/HomePage1_ExpectedResult.html
@@ -8,7 +8,7 @@
<span wicket:id="message">If you see this message wicket is properly
configured and running</span>
<div wicket:id="bug"><wicket:panel>
- <form wicket:id="form" id="form8" method="post"
action="./org.apache.wicket.markup.html.form.validation.HomePage1?1-1.-bug-form">
+ <form wicket:id="form" id="form9" method="post"
action="./org.apache.wicket.markup.html.form.validation.HomePage1?1-1.-bug-form">
<div wicket:id="border"><wicket:border>
<wicket:body>
<input wicket:id="name" value="" name="border:border_body:name"/>
diff --git
a/wicket-core/src/test/java/org/apache/wicket/stateless/StatelessFormUrlTest.java
b/wicket-core/src/test/java/org/apache/wicket/stateless/StatelessFormUrlTest.java
index ef30976..f2cd985 100644
---
a/wicket-core/src/test/java/org/apache/wicket/stateless/StatelessFormUrlTest.java
+++
b/wicket-core/src/test/java/org/apache/wicket/stateless/StatelessFormUrlTest.java
@@ -59,7 +59,7 @@ class StatelessFormUrlTest extends WicketTestCase
void submitLinkInputNameNotEncodedIntoFormAction()
{
tester.executeUrl("?0-1.IFormSubmitListener-form&text=newValue&submitLink=x");
- assertEquals("./?-1.-form",
tester.getTagById("form1").getAttribute("action"));
+ assertEquals("./?-1.-form",
tester.getTagById("form2").getAttribute("action"));
}
/**