This is an automated email from the ASF dual-hosted git repository.
lukaszlenart pushed a commit to branch WW-5233-tiles
in repository https://gitbox.apache.org/repos/asf/struts.git
The following commit(s) were added to refs/heads/WW-5233-tiles by this push:
new be172e6c5 WW-5233 Fixes broken test
be172e6c5 is described below
commit be172e6c56554153c73ba20d235c96c3457e1d04
Author: Lukasz Lenart <[email protected]>
AuthorDate: Mon Oct 3 09:01:58 2022 +0200
WW-5233 Fixes broken test
---
.../tiles/request/collection/ReadOnlyEnumerationMapEntrySetTest.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/plugins/tiles/src/test/java/org/apache/tiles/request/collection/ReadOnlyEnumerationMapEntrySetTest.java
b/plugins/tiles/src/test/java/org/apache/tiles/request/collection/ReadOnlyEnumerationMapEntrySetTest.java
index a77d6bd82..ad44d0379 100644
---
a/plugins/tiles/src/test/java/org/apache/tiles/request/collection/ReadOnlyEnumerationMapEntrySetTest.java
+++
b/plugins/tiles/src/test/java/org/apache/tiles/request/collection/ReadOnlyEnumerationMapEntrySetTest.java
@@ -160,6 +160,7 @@ public class ReadOnlyEnumerationMapEntrySetTest {
expect(extractor.getKeys()).andReturn(keys);
expect(keys.hasMoreElements()).andReturn(true);
+ expect(keys.hasMoreElements()).andReturn(true);
expect(keys.nextElement()).andReturn("two");
expect(extractor.getValue("two")).andReturn(2);