File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -111,9 +111,7 @@ describe('alias:set NUTs', async () => {
111
111
112
112
it ( 'alias:set without varargs stdout' , ( ) => {
113
113
const res : string = execCmd ( 'alias:set ' ) . shellOutput . stderr ;
114
- expect ( res ) . to . include (
115
- 'Error (1): You must provide one or more aliases to set. Use the --help flag to see examples.'
116
- ) ;
114
+ expect ( res ) . to . include ( 'You must provide one or more aliases to set. Use the --help flag to see examples.' ) ;
117
115
} ) ;
118
116
} ) ;
119
117
} ) ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ describe('config:unset NUTs', async () => {
24
24
'You must provide one or more configuration variables to unset. Run "sf config list" to see the configuration variables you\'ve previously set.' ,
25
25
name : 'NoConfigKeysFoundError' ,
26
26
status : 1 ,
27
- code : 1 ,
27
+ code : 'NoConfigKeysFoundError' ,
28
28
exitCode : 1 ,
29
29
warnings : [ ] ,
30
30
} ) ;
You can’t perform that action at this time.
0 commit comments