@@ -535,27 +535,27 @@ async fn no_hover_results_over_params(test_db: PgPool) {
535535 "select * from users where name = $n{}ame;" ,
536536 QueryWithCursorPosition :: cursor_marker( )
537537 ) ;
538- test_hover_at_cursor ( "$ -param" , query, None , & test_db) . await ;
538+ test_hover_at_cursor ( "dollar -param" , query, None , & test_db) . await ;
539539 }
540540 {
541541 let query = format ! (
542542 "select * from users where name = :n{}ame;" ,
543543 QueryWithCursorPosition :: cursor_marker( )
544544 ) ;
545- test_hover_at_cursor ( ": -param" , query, None , & test_db) . await ;
545+ test_hover_at_cursor ( "colon -param" , query, None , & test_db) . await ;
546546 }
547547 {
548548 let query = format ! (
549549 "select * from users where name = @n{}ame;" ,
550550 QueryWithCursorPosition :: cursor_marker( )
551551 ) ;
552- test_hover_at_cursor ( "@ -param" , query, None , & test_db) . await ;
552+ test_hover_at_cursor ( "at -param" , query, None , & test_db) . await ;
553553 }
554554 {
555555 let query = format ! (
556556 "select * from users where name = ?n{}ame;" ,
557557 QueryWithCursorPosition :: cursor_marker( )
558558 ) ;
559- test_hover_at_cursor ( "? -param" , query, None , & test_db) . await ;
559+ test_hover_at_cursor ( "questionmark -param" , query, None , & test_db) . await ;
560560 }
561561}
0 commit comments