File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
src/chocolatey.tests/infrastructure.app/commands Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ public void Should_use_the_first_unparsed_arg_as_the_subcommand()
125
125
public void Should_throw_when_more_than_one_unparsed_arg_is_passed ( )
126
126
{
127
127
Reset ( ) ;
128
- _unparsedArgs . Add ( "wtf " ) ;
128
+ _unparsedArgs . Add ( "abc " ) ;
129
129
_unparsedArgs . Add ( "bbq" ) ;
130
130
var errored = false ;
131
131
Exception error = null ;
@@ -170,7 +170,7 @@ public void Should_accept_disable_as_the_subcommand()
170
170
public void Should_set_unrecognized_values_to_list_as_the_subcommand ( )
171
171
{
172
172
Reset ( ) ;
173
- _unparsedArgs . Add ( "wtf " ) ;
173
+ _unparsedArgs . Add ( "abc " ) ;
174
174
_because ( ) ;
175
175
176
176
Configuration . FeatureCommand . Command . Should ( ) . Be ( FeatureCommandType . List ) ;
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ public void Should_use_the_first_unparsed_arg_as_the_subcommand()
98
98
public void Should_throw_when_more_than_one_unparsed_arg_is_passed ( )
99
99
{
100
100
Reset ( ) ;
101
- _unparsedArgs . Add ( "wtf " ) ;
101
+ _unparsedArgs . Add ( "abc " ) ;
102
102
_unparsedArgs . Add ( "bbq" ) ;
103
103
var errored = false ;
104
104
Exception error = null ;
@@ -143,7 +143,7 @@ public void Should_accept_uppercase_info_as_the_subcommand()
143
143
public void Should_set_unrecognized_values_to_info_as_the_subcommand ( )
144
144
{
145
145
Reset ( ) ;
146
- _unparsedArgs . Add ( "wtf " ) ;
146
+ _unparsedArgs . Add ( "abc " ) ;
147
147
_because ( ) ;
148
148
149
149
Configuration . LicenseCommand . Command . Should ( ) . Be ( LicenseCommandType . Info ) ;
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ public void Should_use_the_first_unparsed_arg_as_the_subcommand()
181
181
public void Should_throw_when_more_than_one_unparsed_arg_is_passed ( )
182
182
{
183
183
Reset ( ) ;
184
- _unparsedArgs . Add ( "wtf " ) ;
184
+ _unparsedArgs . Add ( "abc " ) ;
185
185
_unparsedArgs . Add ( "bbq" ) ;
186
186
var errored = false ;
187
187
Exception error = null ;
@@ -236,7 +236,7 @@ public void Should_remove_add_as_the_subcommand()
236
236
public void Should_set_unrecognized_values_to_list_as_the_subcommand ( )
237
237
{
238
238
Reset ( ) ;
239
- _unparsedArgs . Add ( "wtf " ) ;
239
+ _unparsedArgs . Add ( "abc " ) ;
240
240
_because ( ) ;
241
241
242
242
Configuration . PinCommand . Command . Should ( ) . Be ( PinCommandType . List ) ;
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ public void Should_use_the_first_unparsed_arg_as_the_subcommand()
167
167
public void Should_throw_when_more_than_one_unparsed_arg_is_passed ( )
168
168
{
169
169
Reset ( ) ;
170
- _unparsedArgs . Add ( "wtf " ) ;
170
+ _unparsedArgs . Add ( "abc " ) ;
171
171
_unparsedArgs . Add ( "bbq" ) ;
172
172
var errored = false ;
173
173
Exception error = null ;
@@ -242,7 +242,7 @@ public void Should_accept_disable_as_the_subcommand()
242
242
public void Should_set_unrecognized_values_to_list_as_the_subcommand ( )
243
243
{
244
244
Reset ( ) ;
245
- _unparsedArgs . Add ( "wtf " ) ;
245
+ _unparsedArgs . Add ( "abc " ) ;
246
246
_because ( ) ;
247
247
248
248
Configuration . SourceCommand . Command . Should ( ) . Be ( SourceCommandType . List ) ;
You can’t perform that action at this time.
0 commit comments