File tree Expand file tree Collapse file tree
test/vscode-tests/minimal-workspace Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -634,7 +634,7 @@ export class DatabaseManager extends DisposableObject {
634634 public async createSkeletonPacks ( databaseItem : DatabaseItem ) {
635635 if ( databaseItem === undefined ) {
636636 void this . logger . log (
637- "Could not create QL pack as no database is selected. Please select a database." ,
637+ "Could not create QL pack because no database is selected. Please add a database." ,
638638 ) ;
639639 return ;
640640 }
Original file line number Diff line number Diff line change @@ -617,7 +617,7 @@ describe("databases", () => {
617617 it ( "should fail gracefully" , async ( ) => {
618618 await ( databaseManager as any ) . createSkeletonPacks ( undefined ) ;
619619 expect ( logSpy ) . toHaveBeenCalledWith (
620- "Could not create QL pack as no database is selected. Please select a database." ,
620+ "Could not create QL pack because no database is selected. Please add a database." ,
621621 ) ;
622622 } ) ;
623623 } ) ;
You can’t perform that action at this time.
0 commit comments