dubeejw commented on a change in pull request #2326: (Review) Alphabetize
URL:
https://github.com/apache/incubator-openwhisk/pull/2326#discussion_r125912082
##########
File path: tests/src/test/scala/common/Wsk.scala
##########
@@ -803,7 +804,8 @@ class WskApiExperimental extends RunWskCmd {
{ operation map { o => Seq(o) } getOrElse Seq() } ++
{ limit map { l => Seq("--limit", l.toString) } getOrElse Seq() }
++
{ since map { i => Seq("--since", i.toEpochMilli.toString) }
getOrElse Seq() } ++
- { full map { r => Seq("--full") } getOrElse Seq() }
+ { full map { r => Seq("--full") } getOrElse Seq() } ++
+ { sortAction map{ n => Seq("--sort-action") } getOrElse Seq() }
Review comment:
Space after `map`.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services