Github user mxm commented on a diff in the pull request:

    https://github.com/apache/flink/pull/2149#discussion_r68741918
  
    --- Diff: 
flink-clients/src/test/java/org/apache/flink/client/CliFrontendRunTest.java ---
    @@ -100,15 +100,22 @@ public void testRun() {
                        }
     
                        // test jar arguments
    +            {
    +                String[] parameters =
    +                        {"-m", "localhost:6123", getTestJarPath(), 
"-arg1", "value1", "justavalue", "--arg2", "value2"};
    +                RunOptions options = 
CliFrontendParser.parseRunCommand(parameters);
    +                assertEquals("-arg1", options.getProgramArgs()[0]);
    +                assertEquals("value1", options.getProgramArgs()[1]);
    +                assertEquals("justavalue", options.getProgramArgs()[2]);
    +                assertEquals("--arg2", options.getProgramArgs()[3]);
    +                assertEquals("value2", options.getProgramArgs()[4]);
    --- End diff --
    
    Tabs have been converted to spaces here. That's why the diff looks odd. 
Please use tabs for indention.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to