You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by je...@apache.org on 2018/05/01 12:16:18 UTC

[sling-org-apache-sling-servlets-get] branch master updated: SLING-7625 unit test fix with change in method name

This is an automated email from the ASF dual-hosted git repository.

jeb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-servlets-get.git


The following commit(s) were added to refs/heads/master by this push:
     new 7b327f3  SLING-7625 unit test fix with change in method name
7b327f3 is described below

commit 7b327f30b0452be55c41b47970d770513f27a336
Author: JE Bailey <je...@apache.org>
AuthorDate: Tue May 1 08:15:33 2018 -0400

    SLING-7625 unit test fix with change in method name
---
 .../org/apache/sling/servlets/get/impl/JsonRendererServletTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/sling/servlets/get/impl/JsonRendererServletTest.java b/src/test/java/org/apache/sling/servlets/get/impl/JsonRendererServletTest.java
index 4ba8caa..6c5ee91 100644
--- a/src/test/java/org/apache/sling/servlets/get/impl/JsonRendererServletTest.java
+++ b/src/test/java/org/apache/sling/servlets/get/impl/JsonRendererServletTest.java
@@ -80,7 +80,7 @@ public class JsonRendererServletTest {
 
 		MockSlingHttpServletResponse response = new MockSlingHttpServletResponse();
 		JsonRenderer servlet = new JsonRenderer(1000);
-		PrivateAccessor.invoke(servlet, "doGet",
+		PrivateAccessor.invoke(servlet, "render",
 				new Class[]{SlingHttpServletRequest.class, SlingHttpServletResponse.class},
 				new Object[]{request, response});
 		return response.getOutput().toString();

-- 
To stop receiving notification emails like this one, please contact
jeb@apache.org.