You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by md...@apache.org on 2018/07/03 20:20:57 UTC

[incubator-openwhisk] 11/19: Rename trait and file.

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

mdeuser pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git

commit ce185af833b040aaab827bf3a98b9da336008b92
Author: Rodric Rabbah <ro...@gmail.com>
AuthorDate: Fri Jun 8 21:10:21 2018 -0400

    Rename trait and file.
---
 tests/src/test/scala/common/{Wsk.scala => CliCommand.scala} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/src/test/scala/common/Wsk.scala b/tests/src/test/scala/common/CliCommand.scala
similarity index 98%
rename from tests/src/test/scala/common/Wsk.scala
rename to tests/src/test/scala/common/CliCommand.scala
index 473e175..44c9dcf 100644
--- a/tests/src/test/scala/common/Wsk.scala
+++ b/tests/src/test/scala/common/CliCommand.scala
@@ -26,7 +26,7 @@ import TestUtils._
 
 import scala.collection.mutable
 
-trait RunWskCmd extends Matchers {
+trait CliCommand extends Matchers {
 
   /**
    * The base command to run. This returns a new mutable buffer, intended for building the rest of the command line.
@@ -102,7 +102,7 @@ trait RunWskCmd extends Matchers {
 }
 
 object WskAdmin {
-  val wskadmin = new RunWskCmd {
+  val wskadmin = new CliCommand {
     override def baseCommand: mutable.Buffer[String] = WskAdmin.baseCommand
   }