We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dd49cc commit c0705ecCopy full SHA for c0705ec
cli/create_test.go
@@ -446,7 +446,9 @@ func TestCreateValidateRichParameters(t *testing.T) {
446
match := matches[i]
447
value := matches[i+1]
448
pty.ExpectMatch(match)
449
- pty.WriteLine(value)
+ if value != "" {
450
+ pty.WriteLine(value)
451
+ }
452
}
453
<-doneChan
454
})
@@ -481,7 +483,6 @@ func TestCreateValidateRichParameters(t *testing.T) {
481
483
482
484
485
-
486
if value != "" {
487
pty.WriteLine(value)
488
@@ -519,7 +520,9 @@ func TestCreateValidateRichParameters(t *testing.T) {
519
520
521
522
523
524
525
526
527
528
0 commit comments