summaryrefslogtreecommitdiffstats
path: root/standalone-container/src/test
diff options
context:
space:
mode:
authorquiye <zamasu@gmail.com>2018-02-11 22:23:13 +0900
committerquiye <zamasu@gmail.com>2018-02-11 22:23:13 +0900
commit98276b978c65880ec968b367ab308ff583ba7d7b (patch)
treee4999af5fb981cf273fdf518793dc27ce4d22328 /standalone-container/src/test
parent38a5af4c6be8020fbf4dd0370b6931399af4c8ff (diff)
replace "yinst" with "install"
Diffstat (limited to 'standalone-container/src/test')
-rw-r--r--standalone-container/src/test/scala/com/yahoo/container/standalone/CloudConfigInstallVariablesTest.scala (renamed from standalone-container/src/test/scala/com/yahoo/container/standalone/CloudConfigYinstVariablesTest.scala)4
-rw-r--r--standalone-container/src/test/scala/com/yahoo/container/standalone/StandaloneContainer.scala2
2 files changed, 3 insertions, 3 deletions
diff --git a/standalone-container/src/test/scala/com/yahoo/container/standalone/CloudConfigYinstVariablesTest.scala b/standalone-container/src/test/scala/com/yahoo/container/standalone/CloudConfigInstallVariablesTest.scala
index 585221a8795..efa3edb7b7e 100644
--- a/standalone-container/src/test/scala/com/yahoo/container/standalone/CloudConfigYinstVariablesTest.scala
+++ b/standalone-container/src/test/scala/com/yahoo/container/standalone/CloudConfigInstallVariablesTest.scala
@@ -11,8 +11,8 @@ import org.hamcrest.Matchers.{arrayContaining}
* @author tonytv
* @since 5.
*/
-class CloudConfigYinstVariablesTest {
- def convert = CloudConfigYinstVariables.configServerConverter.convert _
+class CloudConfigInstallVariablesTest {
+ def convert = CloudConfigInstallVariables.configServerConverter.convert _
@Test
def test_configserver_parsing {
diff --git a/standalone-container/src/test/scala/com/yahoo/container/standalone/StandaloneContainer.scala b/standalone-container/src/test/scala/com/yahoo/container/standalone/StandaloneContainer.scala
index b70eefe0681..33f9a2e8594 100644
--- a/standalone-container/src/test/scala/com/yahoo/container/standalone/StandaloneContainer.scala
+++ b/standalone-container/src/test/scala/com/yahoo/container/standalone/StandaloneContainer.scala
@@ -23,7 +23,7 @@ object StandaloneContainer {
def withStandaloneContainer[T](containerNode: Node) {
withTempDirectory { applicationDirectory =>
- System.setProperty(StandaloneContainerApplication.applicationLocationYinstVariable, applicationDirectory.toString)
+ System.setProperty(StandaloneContainerApplication.applicationLocationInstallVariable, applicationDirectory.toString)
createServicesXml(applicationDirectory, containerNode)
val driver = TestDriver.newInjectedApplicationInstance(classOf[StandaloneContainerApplication])