mirror of
https://github.com/apache/struts.git
synced 2026-08-06 15:17:00 +00:00
WN-5141
- fix for IncludeTagTest
This commit is contained in:
@@ -38,7 +38,7 @@ import jakarta.servlet.ServletResponse;
|
||||
*/
|
||||
public class IncludeTagTest extends AbstractTagTest {
|
||||
|
||||
private MockRequestDispatcher mockRequestDispatcher;
|
||||
private RequestDispatcher mockRequestDispatcher;
|
||||
|
||||
private IncludeTag tag;
|
||||
|
||||
@@ -368,7 +368,7 @@ public class IncludeTagTest extends AbstractTagTest {
|
||||
super.setUp();
|
||||
tag = new IncludeTag();
|
||||
|
||||
mockRequestDispatcher = (MockRequestDispatcher) createMock(RequestDispatcher.class);
|
||||
mockRequestDispatcher = (RequestDispatcher) createMock(RequestDispatcher.class);
|
||||
|
||||
request.setRequestDispatcher(mockRequestDispatcher);
|
||||
tag.setPageContext(pageContext);
|
||||
|
||||
Reference in New Issue
Block a user