summaryrefslogtreecommitdiffstats
path: root/application/src
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-11-05 11:34:44 +0100
committergjoranv <gv@oath.com>2019-01-21 15:09:25 +0100
commit6b01125fad374672738a0e68edf7eef5f5463ec9 (patch)
tree461dd3ef947c9578d171d6c73b14cc62fbd4dd6a /application/src
parentcfc7c2bc1aaddbe183bdc5f73bff433070d602da (diff)
Rename DefaultRenderer to XmlRenderer
Diffstat (limited to 'application/src')
-rw-r--r--application/src/test/java/com/yahoo/application/container/JDiscContainerSearchTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/src/test/java/com/yahoo/application/container/JDiscContainerSearchTest.java b/application/src/test/java/com/yahoo/application/container/JDiscContainerSearchTest.java
index 729439e7e5a..b7445d13a17 100644
--- a/application/src/test/java/com/yahoo/application/container/JDiscContainerSearchTest.java
+++ b/application/src/test/java/com/yahoo/application/container/JDiscContainerSearchTest.java
@@ -23,7 +23,7 @@ public class JDiscContainerSearchTest {
try (JDisc container = containerWithSearch(searcherId)) {
byte[] rendered = container.search().processAndRender(ComponentSpecification.fromString("mychain"),
- ComponentSpecification.fromString("DefaultRenderer"), new Query(""));
+ ComponentSpecification.fromString("XmlRenderer"), new Query(""));
String renderedAsString = new String(rendered, "utf-8");
assertThat(renderedAsString, containsString(searcherId));
}