@@ -32,7 +32,7 @@ const verifyHumanResults = (
3232 expect ( defaultUserLine ) . to . include ( defaultOrgEmoji ) ;
3333 const aliasUserLine = lines . find ( ( line ) => line . includes ( aliasedUsername ) ) ;
3434 assert ( aliasUserLine ) ;
35- expect ( aliasUserLine ) . to . include ( 'anAlias ' ) ;
35+ expect ( aliasUserLine ) . to . include ( 'anAliasThatIsReallyLongToSeeIfICanGetThisTableToWrap ' ) ;
3636 // verbose mode should display scratch org Id and dev hub org Id
3737 if ( verbose ) {
3838 expect ( defaultUserLine . match ( / 0 0 D / g) ) . to . have . lengthOf ( 2 , defaultUserLine ) ;
@@ -61,7 +61,7 @@ describe('Org Command NUT', () => {
6161 } ,
6262 {
6363 config : join ( 'config' , 'project-scratch-def.json' ) ,
64- alias : 'anAlias ' ,
64+ alias : 'anAliasThatIsReallyLongToSeeIfICanGetThisTableToWrap ' ,
6565 } ,
6666 ] ,
6767 } ) ;
@@ -70,7 +70,7 @@ describe('Org Command NUT', () => {
7070 hubOrgUsername = session . hubOrg ?. username ;
7171
7272 const defaultOrg = session . orgs . get ( 'default' ) ;
73- const aliasOrg = session . orgs . get ( 'anAlias ' ) ;
73+ const aliasOrg = session . orgs . get ( 'anAliasThatIsReallyLongToSeeIfICanGetThisTableToWrap ' ) ;
7474
7575 assert ( defaultOrg ?. username ) ;
7676 assert ( defaultOrg ?. orgId ) ;
@@ -104,7 +104,7 @@ describe('Org Command NUT', () => {
104104 namespace : null ,
105105 } ) ;
106106 expect ( scratchOrgs . find ( ( org ) => org . username === aliasedUsername ) ) . to . include ( {
107- alias : 'anAlias ' ,
107+ alias : 'anAliasThatIsReallyLongToSeeIfICanGetThisTableToWrap ' ,
108108 namespace : null ,
109109 } ) ;
110110 expect ( listResult . nonScratchOrgs [ 0 ] ) . to . include (
0 commit comments