Skip to content

Commit

Permalink
WW-5117 Uses attribute translations in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszlenart committed Jan 13, 2022
1 parent 9c05422 commit 41e7292
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ public void testSimple_recursionTest() throws Exception {
tag.setName("myname");
tag.setValue("%{foo}");
tag.setSize("10");
tag.setDynamicAttribute(null, "anotherAttr", "%{foo}");
tag.setDynamicAttribute(null, "anotherAttr", "another_%{foo}");

tag.doStartTag();
tag.doEndTag();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<tr>
<td class="tdLabel"><label for="myname" class="label">mylabel:</label></td>
<td class="tdInput"><input type="text" name="myname" size="10" value="%{1+1}" id="myname" anotherAttr="%{1+1}"/></td>
<td class="tdInput"><input type="text" name="myname" size="10" value="%{1+1}" id="myname" anotherAttr="another_%{1+1}"/></td>
</tr>

0 comments on commit 41e7292

Please sign in to comment.