@@ -58,12 +58,12 @@ describe('summaryLine', () => {
5858 */
5959 it ( 'keeps the registry error that follows the CLI wrapper line' , ( ) => {
6060 const error = new Error (
61- 'Local ovsx exited with code 1:\nERROR Unknown namespace: pythoughts \n' ,
61+ 'Local ovsx exited with code 1:\nERROR Unknown namespace: pymodel \n' ,
6262 ) ;
6363
6464 const line = summaryLine ( error ) ;
6565
66- expect ( line ) . toContain ( 'Unknown namespace: pythoughts ' ) ;
66+ expect ( line ) . toContain ( 'Unknown namespace: pymodel ' ) ;
6767 expect ( line ) . toContain ( 'exited with code 1' ) ;
6868 } ) ;
6969
@@ -85,7 +85,7 @@ describe('summaryLine', () => {
8585describe ( 'publishEachTarget' , ( ) => {
8686 it ( 'reports the underlying cause for a failed target, not just the wrapper' , async ( ) => {
8787 const publishOne = vi . fn ( ) . mockRejectedValue (
88- new Error ( 'Local ovsx exited with code 1:\nERROR Unknown namespace: pythoughts ' ) ,
88+ new Error ( 'Local ovsx exited with code 1:\nERROR Unknown namespace: pymodel ' ) ,
8989 ) ;
9090 const logged : string [ ] = [ ] ;
9191 const log = vi . spyOn ( console , 'log' ) . mockImplementation ( ( ...args ) => {
@@ -103,7 +103,7 @@ describe('publishEachTarget', () => {
103103 const failures = logged . filter ( ( line ) => line . includes ( 'FAILED' ) ) ;
104104 expect ( failures ) . toHaveLength ( 3 ) ;
105105 for ( const failure of failures ) {
106- expect ( failure ) . toContain ( 'Unknown namespace: pythoughts ' ) ;
106+ expect ( failure ) . toContain ( 'Unknown namespace: pymodel ' ) ;
107107 }
108108 } ) ;
109109
0 commit comments