@@ -89,17 +89,17 @@ public void Parse_option_with_aliased_verb(string args, Type expectedArgType)
89
89
{
90
90
"copy, cp, cpy (Default Verb) Copy some stuff" ,
91
91
"move, mv" ,
92
- "delete Delete stuff" ,
93
- "help Display more information on a specific command." ,
94
- "version Display version information." ,
92
+ "delete Delete stuff" ,
93
+ "help Display more information on a specific command." ,
94
+ "version Display version information." ,
95
95
} ) ]
96
96
[ InlineData ( "help" , true , new string [ ]
97
97
{
98
98
"copy, cp, cpy (Default Verb) Copy some stuff" ,
99
99
"move, mv" ,
100
- "delete Delete stuff" ,
101
- "help Display more information on a specific command." ,
102
- "version Display version information." ,
100
+ "delete Delete stuff" ,
101
+ "help Display more information on a specific command." ,
102
+ "version Display version information." ,
103
103
} ) ]
104
104
[ InlineData ( "move --help" , false , new string [ ]
105
105
{
@@ -163,16 +163,16 @@ public void Parse_help_option_for_aliased_verbs(string args, bool verbsIndex, st
163
163
[ InlineData ( "--help" , true , new string [ ]
164
164
{
165
165
"move, mv" ,
166
- "delete Delete stuff" ,
167
- "help Display more information on a specific command." ,
168
- "version Display version information." ,
166
+ "delete Delete stuff" ,
167
+ "help Display more information on a specific command." ,
168
+ "version Display version information." ,
169
169
} ) ]
170
170
[ InlineData ( "help" , true , new string [ ]
171
171
{
172
172
"move, mv" ,
173
- "delete Delete stuff" ,
174
- "help Display more information on a specific command." ,
175
- "version Display version information." ,
173
+ "delete Delete stuff" ,
174
+ "help Display more information on a specific command." ,
175
+ "version Display version information." ,
176
176
} ) ]
177
177
[ InlineData ( "move --help" , false , new string [ ]
178
178
{
0 commit comments